From bd02282f4b856a02c4328f1cb8c7d3c53d1bc76d Mon Sep 17 00:00:00 2001 From: William Toohey Date: Wed, 24 Feb 2016 23:51:51 +1000 Subject: [PATCH] Fix default tab and the curse of the missing semicolon --- index.html | 8 ++++---- src/js/HuesUI.js | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index f5fe92c..9230440 100644 --- a/index.html +++ b/index.html @@ -34,15 +34,15 @@
x
- + - +
- + - +
diff --git a/src/js/HuesUI.js b/src/js/HuesUI.js index 3314ae4..b54751e 100644 --- a/src/js/HuesUI.js +++ b/src/js/HuesUI.js @@ -257,7 +257,7 @@ HuesUI.prototype.intToHex = function(num, pad) { str = "0" + str; let prefix = num < 0 ? "-" : "$"; return prefix + "0x" + str; -} +}; /* Individual UIs ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~