Skip to content

Commit 2ec6def

Browse files
committed
Fix display of values on WebPage
1 parent 985e7b6 commit 2ec6def

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/data/status1.html

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ <h3 class="content-subhead">Home Automation Status</h3>
1919
for(k in liveData){
2020
kForId=(/[^a-zA-Z]/.test(k[0]) ? 'a' : '')+k; //k[0] is not in a-zA-Z then we need to add 'a'
2121
kForId=kForId.replace(/ /g,'_');
22+
kForId=kForId.replace(/\+/g,'plus');
2223
if($(qsp+'#'+kForId) != undefined){
2324
var existingElement= $(qsp+'#'+kForId+'Value');
2425
if(existingElement.tagName=='INPUT'){

0 commit comments

Comments
 (0)