From 0bfd21ac7cf9ae476ac7db5ebf9a77fcc84f3996 Mon Sep 17 00:00:00 2001 From: Will Toohey Date: Mon, 11 Sep 2017 10:30:44 +1000 Subject: [PATCH] Fix timelock CSS It's been broken this whole time --- src/js/HuesEditor.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/HuesEditor.js b/src/js/HuesEditor.js index 666faed..d968512 100644 --- a/src/js/HuesEditor.js +++ b/src/js/HuesEditor.js @@ -259,10 +259,10 @@ class HuesEditor { if(this.song.independentBuild) { this.timeLock._locker.innerHTML = ""; - this.timeLock.classList.add("unlocked"); + this.timeLock.classList.add("edit-area__timelock--unlocked"); } else { this.timeLock._locker.innerHTML = ""; - this.timeLock.classList.remove("unlocked"); + this.timeLock.classList.remove("edit-area__timelock--unlocked"); } if(this.song.sound) { this.seekLoop.classList.remove("hues-button--disabled");