diff options
| author | Bas Bosman <[email protected]> | 2014-06-11 19:09:35 +0200 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2014-06-17 11:56:16 -0700 |
| commit | 3f68c40ac1011059ad0e3a7098bc1c75e4cd92bc (patch) | |
| tree | 4aa593159f97f1b49a76b4c793ecfcc0c9e5380b | |
| parent | 045aceef943330a84042a6f3a5c81dc79a10e7e5 (diff) | |
| download | bootstrap-3f68c40ac1011059ad0e3a7098bc1c75e4cd92bc.tar.xz bootstrap-3f68c40ac1011059ad0e3a7098bc1c75e4cd92bc.zip | |
Make autoprefixer browsers fixed
Closes #13795 by merging it.
| -rw-r--r-- | Gruntfile.js | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index ca9d43eec..3301329ec 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -180,7 +180,16 @@ module.exports = function (grunt) { autoprefixer: { options: { - browsers: ['last 2 versions', 'ie 8', 'ie 9', 'android 2.3', 'android 4', 'opera 12'] + browsers: [ + 'Android 2.3', + 'Android >= 4', + 'Chrome >= 20', + 'Firefox >= 24', // Firefox 24 is the latest ESR + 'Explorer >= 8', + 'iOS >= 6', + 'Opera >= 12', + 'Safari >= 6' + ] }, core: { options: { |
