Skip to content
Snippets Groups Projects
Commit d1b0e053 authored by Chris Heitkamp / SuperVirus's avatar Chris Heitkamp / SuperVirus Committed by Chris Heitkamp
Browse files

Fixed wrong usage of setInterval

parent a512a995
No related branches found
No related tags found
No related merge requests found
......@@ -18,9 +18,9 @@ function queryWankerStatus() {
}
}
});
setInterval(queryWankerStatus, 30000);
}
jQuery(document).ready(function() {
queryWankerStatus();
setInterval(queryWankerStatus, 30000);
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment