2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-13 17:26:34 +00:00

00_ZWDongle.pm: fix neighborList for IE11

git-svn-id: https://svn.fhem.de/fhem/trunk@11769 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2016-07-09 06:14:26 +00:00
parent 56e8dde6c6
commit 0f4de3aca2

View File

@ -186,5 +186,9 @@ zw_adjustLines(h, name)
.attr("x2", p.x)
.attr("y2", p.y);
}
if (navigator.appVersion.indexOf("Trident") != -1) {
var svgNode = $("svg line[data-name="+la[i1]+"]")[0];
svgNode.parentNode.insertBefore(svgNode, svgNode);
}
}
}