2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 06:39:11 +00:00

svg.js: fix displaying the value in the correct SVG for multi-column (#92800)

git-svn-id: https://svn.fhem.de/fhem/trunk@17699 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2018-11-07 11:04:58 +00:00
parent 53892f705d
commit 711d8e6bb8

View File

@ -236,7 +236,8 @@ sv_menu(evt, embed)
par.divoffY = $(embed ? embed : svg).offset().top -
$("#content").offset().top-50 +
$("#content").scrollTop();
$("#content").append(par.div);
var parent = (embed ? $(embed).parent() : $(svg).parent());
$(parent).append(par.div);
var pl = selNode[arrName];
if(!pl)