mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 12:49:34 +00:00
fe3ba87361
git-svn-id: https://svn.fhem.de/fhem/trunk@4566 2b470e98-0d58-463d-a4d8-8e2adae1ed80
50 lines
1.1 KiB
JavaScript
50 lines
1.1 KiB
JavaScript
var consConn;
|
|
|
|
var isFF = (navigator.userAgent.toLowerCase().indexOf('firefox') > -1);
|
|
|
|
function
|
|
consUpdate()
|
|
{
|
|
if(consConn.readyState == 4) {
|
|
var errdiv = document.createElement('div');
|
|
errdiv.innerHTML = "Connection lost, reconnecting in 5 seconds...";
|
|
errdiv.setAttribute("id","connect_err");
|
|
document.body.appendChild(errdiv);
|
|
setTimeout("consFill()", 5000);
|
|
return; // some problem connecting
|
|
}
|
|
if(consConn.readyState != 3)
|
|
return;
|
|
|
|
var el = document.getElementById("console");
|
|
if(el) {
|
|
el.innerHTML="Events:<br>"+consConn.responseText;
|
|
el.scrollTop = el.scrollHeight;
|
|
}
|
|
}
|
|
|
|
function
|
|
consFill()
|
|
{
|
|
var errdiv = document.getElementById("connect_err");
|
|
if(errdiv)
|
|
document.body.removeChild(errdiv);
|
|
|
|
consConn = new XMLHttpRequest();
|
|
// Needed when using multiple FF windows
|
|
var query = document.location.pathname+"?XHR=1"+
|
|
"&inform=type=raw;filter=.*"+
|
|
"×tamp="+new Date().getTime();
|
|
consConn.open("GET", query, true);
|
|
consConn.onreadystatechange = consUpdate;
|
|
consConn.send(null);
|
|
}
|
|
|
|
function
|
|
consStart()
|
|
{
|
|
setTimeout("consFill()", 1000);
|
|
}
|
|
|
|
window.onload = consStart;
|