From a767010f9c2dac81ffc62edea5110717933a09ef Mon Sep 17 00:00:00 2001 From: Daniel Schuba Date: Mon, 16 May 2016 16:54:54 +0200 Subject: [PATCH] Fix for #8792 I guess this is a misunderstanding about android browser versions To target Android Webview (Android 2.3) another syntax is needed than for Android Chrome which it was until now. --- gulp/sass.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulp/sass.js b/gulp/sass.js index 59ff3bbcd..6443c050d 100644 --- a/gulp/sass.js +++ b/gulp/sass.js @@ -24,7 +24,7 @@ var LINT_PATHS = [ var COMPATIBILITY = [ 'last 2 versions', 'ie >= 9', - 'and_chr >= 2.3' + 'Android >= 2.3' ]; // Compiles Sass files into CSS -- 2.47.2