From e4598cf2c92de1fe0348d66063eae0fe40b4c913 Mon Sep 17 00:00:00 2001 From: rudolfkoenig <> Date: Fri, 29 Jul 2022 15:22:05 +0000 Subject: [PATCH] f18.js: fix style view after the fhemweb FW_urlParams change (Forum #25983) git-svn-id: https://svn.fhem.de/fhem/trunk@26271 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/www/pgm2/f18.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fhem/www/pgm2/f18.js b/fhem/www/pgm2/f18.js index b20f80c27..c061ced22 100644 --- a/fhem/www/pgm2/f18.js +++ b/fhem/www/pgm2/f18.js @@ -146,11 +146,11 @@ f18_tables() } - if(FW_urlParams.cmd == "style%20list" || - FW_urlParams.cmd == "style%20select") + if(FW_urlParams.cmd == "style list" || + FW_urlParams.cmd == "style select") $("div.fileList").each(function(){ f18_addPinToStyleDiv(this) }); - if(FW_urlParams.cmd == "style%20select") + if(FW_urlParams.cmd == "style select") f18_special(); else if(f18_getAttr("showDragger")) $("[data-name]").each(function(){ f18_addDragger(this) });