diff options
Diffstat (limited to 'view')
-rw-r--r-- | view/main_slider.tpl | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/view/main_slider.tpl b/view/main_slider.tpl index a559eae22..8792fe1dc 100644 --- a/view/main_slider.tpl +++ b/view/main_slider.tpl @@ -1,4 +1,10 @@ <div id="slider" style="height: 32px; position: relative; left: 5%; width: 90%;"><input id="main-range" type="text" name="cminmax" value="0;99" /></div> <script> - $("#main-range").slider({ from: 0, to: 99, step: 1, scale: ['$me', '$intimate', '|', '$friends', '|', '$coworkers', '|', '$oldfriends', '|', '$acquaintances', '|', '$world' ] }); + $("#main-range").slider({ from: 0, to: 99, step: 1, scale: ['$me', '$intimate', '|', '$friends', '|', '$coworkers', '|', '$oldfriends', '|', '$acquaintances', '|', '$world' ], onstatechange: function(v) { + var carr = v.split(";"); + network_cmin = carr[0]; + network_cmax = carr[1]; + var newcmd = buildCmd(); + var f; + } }); </script> |