Changed update interval from 5 to 10s in order to reduce load
This commit is contained in:
parent
0894e053da
commit
2aee4216d2
@ -738,7 +738,7 @@
|
||||
document.title = "NetSpeaker Demo (on " + document.cookie + ")";
|
||||
document.getElementById("title_onIP").innerHTML = "on " + document.cookie;
|
||||
setTimeout(updateStrings, 1000); // to make user see the epic placeholder glow effect of the bootstrap library
|
||||
setInterval(updateStrings, 5000);
|
||||
setInterval(updateStrings, 10000);
|
||||
}
|
||||
|
||||
if (document.cookie == "" || !isValidIP(document.cookie)) {
|
||||
|
Loading…
Reference in New Issue
Block a user