aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/contact_slider.tpl
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2015-07-14 12:46:40 +0200
committerMario Vavti <mario@mariovavti.com>2015-07-14 12:46:40 +0200
commit7f712973831212694de824a2e63961b98ef53959 (patch)
tree7b135e84ecf2439e93105adda5ac01c2e374948f /view/tpl/contact_slider.tpl
parent86633bda48af77483a082d79c1bec7abc3febab3 (diff)
downloadvolse-hubzilla-7f712973831212694de824a2e63961b98ef53959.tar.gz
volse-hubzilla-7f712973831212694de824a2e63961b98ef53959.tar.bz2
volse-hubzilla-7f712973831212694de824a2e63961b98ef53959.zip
cleanup connedit
Diffstat (limited to 'view/tpl/contact_slider.tpl')
-rwxr-xr-xview/tpl/contact_slider.tpl20
1 files changed, 18 insertions, 2 deletions
diff --git a/view/tpl/contact_slider.tpl b/view/tpl/contact_slider.tpl
index 5c15e1c2c..550abc147 100755
--- a/view/tpl/contact_slider.tpl
+++ b/view/tpl/contact_slider.tpl
@@ -1,4 +1,20 @@
-<div id="contact-slider" class="slider" style="height: 32px; position: relative; left: 5%; width: 90%;"><input id="contact-range" type="text" name="fake-closeness" value="{{$val}}" /></div>
+<div id="contact-slider" class="slider form-group"><input id="contact-range" type="text" name="fake-closeness" value="{{$val}}" /></div>
<script>
- $("#contact-range").jRange({ from: {{$min|default:'0'}}, to: 99, step: 1, scale: [{{$labels}}], width:'100%', showLabels: false, onstatechange: function(v) { $("#contact-closeness-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(!$("#affinity-tool-collapse").hasClass("in")) {
+ $("#affinity-tool-collapse").addClass("in");
+ makeContactSlider();
+ $("#affinity-tool-collapse").removeClass("in");
+ }
+ else {
+ makeContactSlider();
+ }
+});
+
+function makeContactSlider() {
+ $("#contact-range").jRange({ from: {{$min|default:'0'}}, to: 99, step: 1, scale: [{{$labels}}], width:'98%', showLabels: false, onstatechange: function(v) { $("#contact-closeness-mirror").val(v); } });
+}
</script>