Changed update interval from 5 to 10s in order to reduce load

This commit is contained in:
BlueFox 2024-03-26 18:03:02 +01:00
parent 0894e053da
commit 2aee4216d2
Signed by: BlueFox
GPG Key ID: 327233DA85435270

View File

@ -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)) {