Merge pull request #16711 from barbudor/fix_knx_javascript

KNX fix javascript scrumbled by quote char
This commit is contained in:
Adrian Scillato 2022-10-02 15:30:10 -07:00 committed by GitHub
commit 7d8d51246f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -945,7 +945,7 @@ void HandleKNXConfiguration(void)
"var GA_AREA=eb('GA_AREA');"
"var GA_FDEF=eb('GA_FDEF');"
"if(GA_FNUM!=null&&GA_FNUM.value=='0'&&GA_AREA.value=='0'&&GA_FDEF.value=='0'){"
"alert('" D_KNX_WARNING "');"
"alert(\"" D_KNX_WARNING "\");"
"}"
"}"
"function CBwarning()"
@ -954,7 +954,7 @@ void HandleKNXConfiguration(void)
"var CB_AREA=eb('CB_AREA');"
"var CB_FDEF=eb('CB_FDEF');"
"if(CB_FNUM!=null&&CB_FNUM.value=='0'&&CB_AREA.value=='0'&&CB_FDEF.value=='0'){"
"alert('" D_KNX_WARNING "');"
"alert(\"" D_KNX_WARNING "\");"
"}"
"}"));
WSContentSendStyle();