From c2f779cf7b665e37436d2a28c794a953875f8467 Mon Sep 17 00:00:00 2001 From: rudolfkoenig <> Date: Sat, 24 Mar 2012 18:11:25 +0000 Subject: [PATCH] Command got lost: longpoll wont work... git-svn-id: https://svn.fhem.de/fhem/trunk@1380 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/webfrontend/pgm2/longpoll.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/fhem/webfrontend/pgm2/longpoll.js b/fhem/webfrontend/pgm2/longpoll.js index 163492a38..4f96c452e 100644 --- a/fhem/webfrontend/pgm2/longpoll.js +++ b/fhem/webfrontend/pgm2/longpoll.js @@ -1,5 +1,13 @@ var pollConn; +function +cmd(arg) +{ + var req = new XMLHttpRequest(); + req.open("GET", arg, true); + req.send(null); +} + function doUpdate() {