From 85ffde1f6c623ba80ebfb90415b8436bb186eba0 Mon Sep 17 00:00:00 2001 From: William Toohey Date: Thu, 5 May 2016 23:37:20 +1000 Subject: [PATCH] Function semicolons will be the death of me --- src/js/HuesCanvas.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/HuesCanvas.js b/src/js/HuesCanvas.js index c98977e..7212f17 100644 --- a/src/js/HuesCanvas.js +++ b/src/js/HuesCanvas.js @@ -483,7 +483,7 @@ HuesCanvas.prototype.doTrippyX = function() { this.trippyOn = true; this.doXBlur(); this.trippyOn = saveTrippy; -} +}; HuesCanvas.prototype.doTrippyY = function() { let saveTrippy = this.trippyOn; @@ -491,7 +491,7 @@ HuesCanvas.prototype.doTrippyY = function() { this.trippyOn = true; this.doYBlur(); this.trippyOn = saveTrippy; -} +}; HuesCanvas.prototype.setBlurDecay = function(decay) { this.blurDecay = {"slow" : 7.8, "medium" : 14.1, "fast" : 20.8, "faster!" : 28.7}[decay];