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

This commit is contained in:
czaks 2014-09-25 06:32:53 +02:00
parent ed5272f17d
commit dbaeb395ac

View File

@ -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();
});