We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 985e7b6 commit 2ec6defCopy full SHA for 2ec6def
src/data/status1.html
@@ -19,6 +19,7 @@ <h3 class="content-subhead">Home Automation Status</h3>
19
for(k in liveData){
20
kForId=(/[^a-zA-Z]/.test(k[0]) ? 'a' : '')+k; //k[0] is not in a-zA-Z then we need to add 'a'
21
kForId=kForId.replace(/ /g,'_');
22
+ kForId=kForId.replace(/\+/g,'plus');
23
if($(qsp+'#'+kForId) != undefined){
24
var existingElement= $(qsp+'#'+kForId+'Value');
25
if(existingElement.tagName=='INPUT'){
0 commit comments