Browse Source

#2299 Fix rtl typo

pull/2308/head
jlukic 9 years ago
parent
commit
701426bcb3
1 changed files with 2 additions and 2 deletions
  1. 4
      tasks/build.js

4
tasks/build.js

@ -22,10 +22,10 @@ module.exports = function(callback) {
// check for right-to-left (RTL) language // check for right-to-left (RTL) language
if(config.rtl == 'both') { if(config.rtl == 'both') {
gulp.start('built-rtl');
gulp.start('build-rtl');
} }
if(config.rtl === true || config.rtl === 'Yes') { if(config.rtl === true || config.rtl === 'Yes') {
gulp.start('built-rtl');
gulp.start('build-rtl');
return; return;
} }

Loading…
Cancel
Save