diff options
Diffstat (limited to 'view')
-rw-r--r-- | view/img/jslider.png | bin | 0 -> 1021 bytes | |||
-rw-r--r-- | view/theme/redbasic/css/style.css | 7 | ||||
-rw-r--r-- | view/tpl/main_slider.tpl | 4 |
3 files changed, 5 insertions, 6 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 1d191b4a7..97d5f440e 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -3534,13 +3534,12 @@ div.jGrowl div.info { text-align: center; } -/* -Leave this here for now just in case, but this is what's breaking the slider .jslider .jslider-bg, .jslider .jslider-pointer { - background: url("../img/slider.png") !important; -}*/ + background: url("../../../img/jslider.png") !important; +} + .slider { margin-top: 10px; 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(); } }); |