Browse Source

Equality on rtl

pull/2228/merge
jlukic 9 years ago
parent
commit
8c5623d67f
1 changed files with 1 additions and 1 deletions
  1. 2
      tasks/watch.js

2
tasks/watch.js

@ -59,7 +59,7 @@ module.exports = function(callback) {
// check for right-to-left language
if(config.rtl === true || config.rtl === 'Yes') {
gulp.start('watch-rtl');
if(config.rtl != 'both') {
if(config.rtl !== 'both') {
return;
}
}

Loading…
Cancel
Save