2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 18:59:33 +00:00
fhem-mirror/fhem/www/pgm2/fhemweb_readingsHistory.js
justme-1968 6fc44039e1 (re?)added missing fhemweb_readingsHistory.js
git-svn-id: https://svn.fhem.de/fhem/trunk@6088 2b470e98-0d58-463d-a4d8-8e2adae1ed80
2014-06-08 15:53:54 +00:00

41 lines
658 B
JavaScript

function
FW_readingsHistoryUpdateLine(d){
var dd = d[0].split("-", 3);
if(dd.length != 2)
return;
var clear = 0;
if( dd[1] == "clear" )
clear = 1;
else if( dd[1] != "history" )
return;
var name = dd[0] + "-history";
el = document.getElementById(name);
if( el ) {
var rows = el.getAttribute("rows");
var lines = el.innerHTML.split( "<br>", rows );
el.innerHTML = d[1] + "<br>";
for( i = 0; i <= rows-2; ++i )
{
if( !clear )
el.innerHTML += lines[i];
el.innerHTML += "<br>";
}
}
}
FW_widgets['readingsHistory'] = {
updateLine:FW_readingsHistoryUpdateLine
};