diff options
author | Thomas Willingham <beardyunixer@beardyunixer.com> | 2014-12-02 00:59:20 +0000 |
---|---|---|
committer | Thomas Willingham <beardyunixer@beardyunixer.com> | 2014-12-02 00:59:20 +0000 |
commit | 460d379e7efc074808109b4c9acd0aea46460d16 (patch) | |
tree | 0838c4ffcad0e6b92f97d6c74b6ee62d80321de4 /view/tpl | |
parent | def10df816ec7ca25fe463bf029e84ba7dfdba61 (diff) | |
download | volse-hubzilla-460d379e7efc074808109b4c9acd0aea46460d16.tar.gz volse-hubzilla-460d379e7efc074808109b4c9acd0aea46460d16.tar.bz2 volse-hubzilla-460d379e7efc074808109b4c9acd0aea46460d16.zip |
Don't allow affinity of 0 in connedit.
Diffstat (limited to 'view/tpl')
-rwxr-xr-x | view/tpl/contact_slider.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/tpl/contact_slider.tpl b/view/tpl/contact_slider.tpl index 33cd3fb71..93d0cc625 100755 --- a/view/tpl/contact_slider.tpl +++ b/view/tpl/contact_slider.tpl @@ -1,4 +1,4 @@ <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> <script> - $("#contact-range").slider({ from: 0, to: 99, step: 1, scale: ['{{$me}}', '|', '{{$intimate}}', '|', '{{$friends}}', '|', '{{$oldfriends}}', '|', '{{$acquaintances}}', '|', '{{$world}}' ], onstatechange: function(v) { $("#contact-closeness-mirror").val(v); } }); + $("#contact-range").slider({ from: {{$min|default:'0'}}, to: 99, step: 1, scale: ['{{$me}}', '|', '{{$intimate}}', '|', '{{$friends}}', '|', '{{$oldfriends}}', '|', '{{$acquaintances}}', '|', '{{$world}}' ], onstatechange: function(v) { $("#contact-closeness-mirror").val(v); } }); </script> |