fhemweb_readingsGroup.js: use display: table to show readingsGroup

git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@7266 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
justme1968
2014-12-19 18:27:54 +00:00
parent 2ce2873fbd
commit 076e5303cb

View File

@@ -4,7 +4,7 @@ FW_readingsGroupToggle(d) {
var rg = document.getElementById( 'readingsGroup-'+d ); var rg = document.getElementById( 'readingsGroup-'+d );
if( rg ) { if( rg ) {
s=rg.style; s=rg.style;
s.display = s.display=='none' ? 'block' : 'none'; s.display = s.display=='none' ? 'table' : 'none';
var group = rg.getAttribute('groupId'); var group = rg.getAttribute('groupId');
if( group ) { if( group ) {