mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-16 04:36:02 +00:00
querySelector needs a string
git-svn-id: https://svn.fhem.de/fhem/trunk@3453 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
0cf755e1ae
commit
8f153f7a01
@ -34,7 +34,7 @@ FW_doUpdate()
|
||||
var d = lines[i].split("<<", 3); // Complete arg
|
||||
if(d.length != 3)
|
||||
continue;
|
||||
var elArr = document.querySelectorAll("[informId="+d[0]+"]");
|
||||
var elArr = document.querySelectorAll("[informId='"+d[0]+"']");
|
||||
for(var k=0; k<elArr.length; k++){
|
||||
el = elArr[k];
|
||||
if(el.nodeName.toLowerCase() == "select") {
|
||||
|
Loading…
x
Reference in New Issue
Block a user