mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-05-07 22:29:19 +00:00
FS20 needs parseFloat instead of parseInt
git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@2000 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
4b9c1ce61d
commit
f7dfa15c0d
@ -56,7 +56,7 @@ Slider(slider, min, stp, max, curr, cmd)
|
||||
{
|
||||
var sh = slider.firstChild;
|
||||
var lastX=-1, offX=0, maxX=0, val=-1;
|
||||
min = parseInt(min); max = parseInt(max); stp = parseInt(stp);
|
||||
min = parseFloat(min); max = parseFloat(max); stp = parseFloat(stp);
|
||||
|
||||
function
|
||||
init()
|
||||
|
Loading…
x
Reference in New Issue
Block a user