We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d26571 commit 668295bCopy full SHA for 668295b
js/tracker.js
@@ -2089,7 +2089,8 @@ var ajax_inprogress = false;
2089
2090
function refresh() {
2091
if(ajax_inprogress) {
2092
- periodical = setTimeout(refresh, 2000);
+ clearTimeout(periodical);
2093
+ periodical = setTimeout(refresh, 2000);
2094
}
2095
2096
$("#stText").text("checking |");
@@ -2123,6 +2124,7 @@ function refresh() {
2123
2124
2125
},
2126
complete: function(request, textStatus) {
2127
2128
periodical = setTimeout(refresh, timer_seconds * 1000);
2129
2130
});
0 commit comments