diff options
author | friendica <info@friendica.com> | 2013-01-06 15:11:31 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-01-06 15:11:31 -0800 |
commit | 8766616e354a7074e695fc4189729fdd85c8e907 (patch) | |
tree | f4f534217b4596cbbd4e9d894c48639cf02c9ca0 /view | |
parent | 7cd014e93ce1ebb2fded0bdcc093b982dd9ce57b (diff) | |
download | volse-hubzilla-8766616e354a7074e695fc4189729fdd85c8e907.tar.gz volse-hubzilla-8766616e354a7074e695fc4189729fdd85c8e907.tar.bz2 volse-hubzilla-8766616e354a7074e695fc4189729fdd85c8e907.zip |
get sliders working again
Diffstat (limited to 'view')
-rw-r--r-- | view/img/jslider.png | bin | 0 -> 1021 bytes | |||
-rw-r--r-- | view/theme/redbasic/css/style.css | 2 | ||||
-rw-r--r-- | view/tpl/main_slider.tpl | 4 |
3 files changed, 3 insertions, 3 deletions
diff --git a/view/img/jslider.png b/view/img/jslider.png Binary files differnew file mode 100644 index 000000000..12d26ccad --- /dev/null +++ b/view/img/jslider.png diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index f600f5272..a3dbf6c3d 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -3535,7 +3535,7 @@ div.jGrowl div.info { .jslider .jslider-bg, .jslider .jslider-pointer { - background: url("../img/slider.png") !important; + background: url("../../../img/jslider.png") !important; } .slider { diff --git a/view/tpl/main_slider.tpl b/view/tpl/main_slider.tpl index ea8b04cf3..662677684 100644 --- a/view/tpl/main_slider.tpl +++ b/view/tpl/main_slider.tpl @@ -2,8 +2,8 @@ <script> $("#main-range").slider({ from: 0, to: 99, step: 1, scale: ['$me', '|', '$intimate', '|', '$friends', '|', '$oldfriends', '|', '$acquaintances', '|', '$world' ], onstatechange: function(v) { var carr = v.split(";"); - network_cmin = carr[0]; - network_cmax = carr[1]; + bParam_cmin = carr[0]; + bParam_cmax = carr[1]; networkRefresh(); } }); |