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

git-svn-id: https://fhem.svn.sourceforge.net/svnroot/fhem/trunk/fhem@1172 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig
2012-01-06 17:29:51 +00:00
parent f243e596ab
commit 57c5e69dda

View File

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