From 55a14f4466bd1df9a28eb64a8ac97053e221880c Mon Sep 17 00:00:00 2001 From: rudolfkoenig <> Date: Tue, 31 Dec 2019 12:20:15 +0000 Subject: [PATCH] svg.js: BlackCat: fix "display plot values" for groups (Forum #23406) git-svn-id: https://svn.fhem.de/fhem/trunk@20860 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/www/pgm2/svg.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fhem/www/pgm2/svg.js b/fhem/www/pgm2/svg.js index ae8474ed6..56bcfdb8e 100644 --- a/fhem/www/pgm2/svg.js +++ b/fhem/www/pgm2/svg.js @@ -442,6 +442,8 @@ $(document).ready(function(){ svg_load("svg_pastedata", function(val) {svg_pastedata = val} ); }); $("svg[id]").each(function(){ // (direct) + if($(this).parent().parent('td').length) // needed in groups + $(this).parent().css( "position", "relative" ); if($(this).attr("id").indexOf("SVGPLOT") == 0) svg_init_one(undefined, this); });