Skip to content

Commit

Permalink
Explicitly define auto-insert prefixes option for preprocessors
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeche committed Jun 17, 2014
1 parent 28914ae commit 943db06
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/resolver/css.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,11 @@ define(function(require, exports, module) {
+ '(e.g. <code>-bxsh</code>). With this option enabled, you don’t '
+ 'need dashes before abbreviations: Emmet will produce '
+ 'vendor-prefixed properties for you.');

prefs.define('less.autoInsertVendorPrefixes', false, 'Same as <code>css.autoInsertVendorPrefixes</code> but for LESS syntax');
prefs.define('scss.autoInsertVendorPrefixes', false, 'Same as <code>css.autoInsertVendorPrefixes</code> but for SCSS syntax');
prefs.define('sass.autoInsertVendorPrefixes', false, 'Same as <code>css.autoInsertVendorPrefixes</code> but for SASS syntax');
prefs.define('stylus.autoInsertVendorPrefixes', false, 'Same as <code>css.autoInsertVendorPrefixes</code> but for Stylus syntax');

var descTemplate = template('A comma-separated list of CSS properties that may have '
+ '<code><%= vendor %></code> vendor prefix. This list is used to generate '
Expand Down

0 comments on commit 943db06

Please sign in to comment.