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); });