aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/rating_slider.tpl
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-07-14 17:10:13 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-07-14 17:10:13 -0700
commite8f19c1e15f9ba728ca19222a62da602b862c77c (patch)
treeb1434ba4eea81d9ad0e951a9acd9e5f83ebafd20 /view/tpl/rating_slider.tpl
parentda5cec24e018cded947f931e2398ea43e052caed (diff)
parent3687fef53c5eeef7153306f45c5f187d5bfca68c (diff)
downloadvolse-hubzilla-e8f19c1e15f9ba728ca19222a62da602b862c77c.tar.gz
volse-hubzilla-e8f19c1e15f9ba728ca19222a62da602b862c77c.tar.bz2
volse-hubzilla-e8f19c1e15f9ba728ca19222a62da602b862c77c.zip
Merge branch 'master' of https://github.com/redmatrix/redmatrix
Conflicts: mod/connedit.php
Diffstat (limited to 'view/tpl/rating_slider.tpl')
-rw-r--r--view/tpl/rating_slider.tpl19
1 files changed, 17 insertions, 2 deletions
diff --git a/view/tpl/rating_slider.tpl b/view/tpl/rating_slider.tpl
index 4702fc65b..4c36504e6 100644
--- a/view/tpl/rating_slider.tpl
+++ b/view/tpl/rating_slider.tpl
@@ -1,4 +1,19 @@
-<div id="rating-slider" class="slider" style="height: 32px; position: relative; left: 5%; width: 90%;"><input id="rating-range" type="text" name="fake-rating" value="{{$val}}" /></div>
+<div id="rating-slider" class="slider form-group"><input id="rating-range" type="text" name="fake-rating" value="{{$val}}" /></div>
<script>
- $("#rating-range").jRange({ from: -10, to: 10, step: 1, width:'100%', showLabels: false, showScale: true, scale : [ '-10','-8','-6','-4','-2','0','2','4','6','8','10' ], onstatechange: function(v) { $("#contact-rating-mirror").val(v); } });
+$(document).ready(function() {
+ // The slider does not render correct if width is given in % and
+ // the slider container is hidden (display: none) during rendering.
+ // So let's unhide it to render and hide again afterwards.
+ if(!$("#rating-tool-collapse").hasClass("in")) {
+ $("#rating-tool-collapse").addClass("in");
+ makeRatingSlider();
+ $("#rating-tool-collapse").removeClass("in");
+ }
+ else {
+ makeRatingSlider();
+ }
+});
+function makeRatingSlider() {
+ $("#rating-range").jRange({ from: -10, to: 10, step: 1, width:'98%', showLabels: false, showScale: true, scale : [ '-10','-8','-6','-4','-2','0','2','4','6','8','10' ], onstatechange: function(v) { $("#contact-rating-mirror").val(v); } });
+}
</script>