From 7247222553201b6fb7f225bffa65760df44428b2 Mon Sep 17 00:00:00 2001 From: William Toohey Date: Thu, 11 Feb 2016 20:49:34 +1000 Subject: [PATCH] I gotta start linting more --- src/js/HuesEditor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/HuesEditor.js b/src/js/HuesEditor.js index ae51a9d..7ba5be3 100644 --- a/src/js/HuesEditor.js +++ b/src/js/HuesEditor.js @@ -1216,7 +1216,7 @@ HuesEditor.prototype.alert = function(msg) { this.statusMsg.classList.remove("fade"); this.statusMsg.textContent = msg; // Trigger a reflow and thus restart the animation - this.statusMsg.offsetWidth; + var useless = this.statusMsg.offsetWidth; this.statusMsg.classList.add("fade"); }