diff --git a/ui/experiments/editor.html b/ui/experiments/editor.html index 8e256984..69346550 100755 --- a/ui/experiments/editor.html +++ b/ui/experiments/editor.html @@ -20,6 +20,7 @@ input[type=range] { } input[type=range]:after { content: attr(value); + color: black; } div > span:first-child { display: inline-block; @@ -65,7 +66,7 @@ function loadSliderState(){ // set the saved values... while(state.length > 0){ var e = $('#'+state.pop()) - .val(state.pop()) + .val(parseFloat(state.pop())) } } @@ -110,7 +111,7 @@ function clearStates(){
Hue: - +