setinterval was backwards
This commit is contained in:
parent
b5d60f1431
commit
51bdf9609f
@ -100,9 +100,9 @@
|
|||||||
// start nntp feed stats ticker
|
// start nntp feed stats ticker
|
||||||
var e = document.getElementById("nntpchan_feeds");
|
var e = document.getElementById("nntpchan_feeds");
|
||||||
if (e) {
|
if (e) {
|
||||||
setInterval(2000, function() {
|
setInterval(function() {
|
||||||
update_nntpchan_feed_ticker(e);
|
update_nntpchan_feed_ticker(e);
|
||||||
});
|
}, 2000);
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<noscript>
|
<noscript>
|
||||||
|
Reference in New Issue
Block a user