Fix timelock CSS

It's been broken this whole time
master
Will Toohey 8 years ago
parent 5ba2eec539
commit 0bfd21ac7c
  1. 4
      src/js/HuesEditor.js

@ -259,10 +259,10 @@ class HuesEditor {
if(this.song.independentBuild) { if(this.song.independentBuild) {
this.timeLock._locker.innerHTML = ""; this.timeLock._locker.innerHTML = "";
this.timeLock.classList.add("unlocked"); this.timeLock.classList.add("edit-area__timelock--unlocked");
} else { } else {
this.timeLock._locker.innerHTML = ""; this.timeLock._locker.innerHTML = "";
this.timeLock.classList.remove("unlocked"); this.timeLock.classList.remove("edit-area__timelock--unlocked");
} }
if(this.song.sound) { if(this.song.sound) {
this.seekLoop.classList.remove("hues-button--disabled"); this.seekLoop.classList.remove("hues-button--disabled");

Loading…
Cancel
Save