mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 12:49:34 +00:00
fhemweb.js: fix textfield-long bug when Raw-Def is open. (Forum #69276)
git-svn-id: https://svn.fhem.de/fhem/trunk@13744 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
87280cb93f
commit
6c5c6f0daf
@ -696,7 +696,7 @@ FW_rawDef()
|
||||
}
|
||||
|
||||
$("#content").append('<div id="rawDef">'+
|
||||
'<textarea id="td_longText" rows="25" cols="60" style="width:99%"/>'+
|
||||
'<textarea id="td_rawDef" rows="25" cols="60" style="width:99%"/>'+
|
||||
'<button>Execute commands</button>'+
|
||||
' Dump "Probably associated with" too <input type="checkbox">'+
|
||||
'</div></br>');
|
||||
@ -1155,7 +1155,7 @@ FW_createTextField(elName, devName, vArr, currVal, set, params, cmd)
|
||||
});
|
||||
};
|
||||
|
||||
if( is_long )
|
||||
if(is_long)
|
||||
$(newEl).click(myFunc);
|
||||
|
||||
return newEl;
|
||||
|
Loading…
Reference in New Issue
Block a user