jshint: boss

This commit is contained in:
Luke Page
2013-12-16 23:23:34 +00:00
parent 4f7c06c9c8
commit 3818727bf7
16 changed files with 214 additions and 134 deletions

View File

@@ -615,10 +615,11 @@ less.watch = function () {
less.env = 'development';
initRunningMode();
}
return this.watchMode = true;
this.watchMode = true;
return true;
};
less.unwatch = function () {clearInterval(less.watchTimer); return this.watchMode = false; };
less.unwatch = function () {clearInterval(less.watchTimer); this.watchMode = false; return false; };
if (/!watch/.test(location.hash)) {
less.watch();