mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-19 00:26:03 +00:00
FS20 needs parseFloat instead of parseInt
git-svn-id: https://svn.fhem.de/fhem/trunk@2000 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
29162f132e
commit
a5277ab2c0
@ -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