mirror of
https://github.com/YunoHost-Apps/hubzilla_ynh.git
synced 2024-09-03 19:26:21 +02:00
38 lines
1.1 KiB
Smarty
Executable file
38 lines
1.1 KiB
Smarty
Executable file
<div id="main-slider" class="slider" ><input id="main-range" type="text" name="cminmax" value="{{$val}}" /></div>
|
|
<script>
|
|
$(document).ready(function() {
|
|
var old_cmin = 0;
|
|
var old_cmax = 99;
|
|
|
|
$("#main-range").jRange({ isRange: true, from: 0, to: 99, step: 1, scale: [{{$labels}}], width:'100%', showLabels: false, onstatechange: function(v) {
|
|
var carr = v.split(",");
|
|
if(carr[0] != bParam_cmin) {
|
|
old_cmin = bParam_cmin;
|
|
bParam_cmin = carr[0];
|
|
}
|
|
if(carr[1] != bParam_cmax) {
|
|
old_cmax = bParam_cmax;
|
|
bParam_cmax = carr[1];
|
|
}
|
|
networkRefresh();
|
|
} });
|
|
|
|
var slideTimer = null;
|
|
function networkRefresh() {
|
|
$("#profile-jot-text-loading").show();
|
|
|
|
if((document.readyState !== "complete") || (slideTimer !== null))
|
|
return;
|
|
if((bParam_cmin == old_cmin) && (bParam_cmax == old_cmax))
|
|
return;
|
|
setTimeout(function() { $("#profile-jot-text-loading").spin('small'); }, 1000 );
|
|
slideTimer = setTimeout(networkTimerRefresh,2000);
|
|
}
|
|
|
|
function networkTimerRefresh() {
|
|
slideTimer = null;
|
|
page_load = true;
|
|
liveUpdate();
|
|
}
|
|
});
|
|
</script>
|