2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 12:49:34 +00:00

The browser is not showing the loading symbol any more. Hint by Alex B.

git-svn-id: https://svn.fhem.de/fhem/trunk@1172 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2012-01-06 17:29:51 +00:00
parent 4ad9ec72cc
commit ba20ccfcb2

View File

@ -42,4 +42,10 @@ longpoll()
pollConn.send(null);
}
window.onload = longpoll;
function
delayedStart()
{
setTimeout("longpoll()", 1000);
}
window.onload = delayedStart;