diff options
author | zotlabs <mike@macgirvin.com> | 2017-10-05 19:20:39 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-10-05 19:20:39 -0700 |
commit | 7c501ef60fd3d14e7184bf82d3ef6663401dcaea (patch) | |
tree | 88c1b0e0217dcda4dde583e5ee81558613023e52 /view/tpl/main_slider.tpl | |
parent | a0eb62852606ef0362d3ed07e4bd50aeb5b6f73c (diff) | |
download | volse-hubzilla-7c501ef60fd3d14e7184bf82d3ef6663401dcaea.tar.gz volse-hubzilla-7c501ef60fd3d14e7184bf82d3ef6663401dcaea.tar.bz2 volse-hubzilla-7c501ef60fd3d14e7184bf82d3ef6663401dcaea.zip |
update some old spinners which were causing js issues
Diffstat (limited to 'view/tpl/main_slider.tpl')
-rwxr-xr-x | view/tpl/main_slider.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/tpl/main_slider.tpl b/view/tpl/main_slider.tpl index d4f0dd936..4cc265f59 100755 --- a/view/tpl/main_slider.tpl +++ b/view/tpl/main_slider.tpl @@ -1,5 +1,5 @@ <div id="main-slider" class="slider" ><input id="main-range" type="text" name="cminmax" value="{{$val}}" /></div> -<div id="profile-jot-text-loading" style="display:none;"></div> +<div id="profile-jot-text-loading" class="spinner-wrapper"><div class="spinner m"></div></div> <script> $(document).ready(function() { var old_cmin = 0; @@ -27,7 +27,7 @@ $(document).ready(function() { return; if((bParam_cmin == old_cmin) && (bParam_cmax == old_cmax)) return; - setTimeout(function() { $("#profile-jot-text-loading").spin('small'); }, 1000 ); + slideTimer = setTimeout(networkTimerRefresh,2000); } |