diff --git a/src/js/HuesCanvas.js b/src/js/HuesCanvas.js index a418291..81513f8 100644 --- a/src/js/HuesCanvas.js +++ b/src/js/HuesCanvas.js @@ -104,7 +104,7 @@ function HuesCanvas(element, audioContext, core) { HuesCanvas.prototype.setInvert = function(invert) { this.invert = invert; this.needsRedraw = true; -} +}; HuesCanvas.prototype.settingsUpdated = function() { this.setSmartAlign(localStorage["smartAlign"]); @@ -249,7 +249,7 @@ HuesCanvas.prototype.drawInvert = function() { this.context.fillStyle = "#FFF"; this.context.fillRect(0,0,this.canvas.width,720); } -} +}; /* Second fastest method from http://stackoverflow.com/questions/10073699/pad-a-number-with-leading-zeros-in-javascript diff --git a/src/js/HuesCore.js b/src/js/HuesCore.js index 5f83d2c..59d8d45 100644 --- a/src/js/HuesCore.js +++ b/src/js/HuesCore.js @@ -29,7 +29,7 @@ function HuesCore(defaults) { // Yes, we do indeed have Javascript this.clearMessage(); // Bunch-o-initialisers - this.version = "0x15"; + this.version = "0x16"; this.beatIndex = 0; // How long a beat lasts for in each section diff --git a/src/js/HuesUI.js b/src/js/HuesUI.js index bb475da..da5d023 100644 --- a/src/js/HuesUI.js +++ b/src/js/HuesUI.js @@ -266,7 +266,7 @@ HuesUI.prototype.invert = function(invert) { } else { this.root.classList.remove("inverted"); } -} +}; /* Individual UIs ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~