Browse Source

auto-reload.js: it`s actually setTimeout, not setInterval, right?

pull/40/head
czaks 10 years ago
parent
commit
dbaeb395ac
  1. 2
      js/auto-reload.js

2
js/auto-reload.js

@ -151,7 +151,7 @@ $(document).ready(function(){
setInterval(timer_update, 1000);
setInterval(decrement_timer, 1000);
poll_interval = setInterval(poll, poll_interval_delay);
poll_interval = setTimeout(poll, poll_interval_delay);
timer_update();
});

Loading…
Cancel
Save