mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 18:59:33 +00:00
fhemweb.js: fix attr-filling for devicenames with dot (Forum #52070)
git-svn-id: https://svn.fhem.de/fhem/trunk@11277 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
8bbbaf0b36
commit
bb90b0fa74
@ -202,7 +202,7 @@ FW_jqueryReadyFn()
|
||||
.html('<a>'+$(this).html()+'</a>')
|
||||
.css({cursor:"pointer"})
|
||||
.click(function(){
|
||||
var aname = "#sel_attr"+$(this).attr("data-name");
|
||||
var aname = "#sel_attr"+$(this).attr("data-name").replace(/\./g,'_');
|
||||
$(aname).val($(this).text());
|
||||
FW_detailSelect(aname);
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user