mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 12:49:34 +00:00
fhemweb.js: fix help for devicenames with dot (Forum #91830)
git-svn-id: https://svn.fhem.de/fhem/trunk@17476 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
74b1c2297f
commit
17a116ea40
@ -291,7 +291,7 @@ FW_jqueryReadyFn()
|
||||
$("select[id^=sel_attr],select[id^=sel_set],select[id^=sel_get]")
|
||||
.change(function(){ // online help
|
||||
var val = $(this).val();
|
||||
var m = $(this).attr("id").match(/sel_(set|get|attr)(.*)/);
|
||||
var m = $(this).attr("name").match(/arg.(set|get|attr)(.*)/);
|
||||
if(!m)
|
||||
return;
|
||||
$("#devSpecHelp").remove();
|
||||
|
Loading…
Reference in New Issue
Block a user