2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 06:39:11 +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:
rudolfkoenig 2018-10-07 12:49:16 +00:00
parent 74b1c2297f
commit 17a116ea40

View File

@ -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();