From 14375d8fb2e8aa2939df3dab85d42d18d3e93776 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Thu, 28 Nov 2013 14:54:26 +0400 Subject: [PATCH] minor fix... Signed-off-by: Alex A. Naanou --- ui/experiments/editor.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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: - +