Fix linting

master
William Toohey 9 years ago
parent ce329e6505
commit 1a712b5f40
  1. 2
      gulpfile.js
  2. 2
      src/js/HuesUI.js
  3. 2
      src/js/SoundManager.js

@ -62,7 +62,7 @@ gulp.task("minify", function () {
});
gulp.task("lint", function () {
return gulp.src("src/js/*.js")
return gulp.src(["src/js/*.js", '!src/js/string_score.min.js'])
.pipe(jshint('.jshintrc'))
.pipe(jshint.reporter('default'));
});

@ -197,7 +197,7 @@ class HuesUI {
// ONLY FOR CHANGING UI, NOT FOR "HIDE" FEATURE
show() {
this.root.style.visibility = "visible"
this.root.style.visibility = "visible";
}
// ONLY FOR CHANGING UI, NOT FOR "HIDE" FEATURE

@ -31,7 +31,7 @@ class SoundManager {
* Called when the audio has been seeked - reset time determined transforms
*/
seek : []
}
};
this.core = core;
this.playing = false;

Loading…
Cancel
Save