2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-06 06:08:44 +00:00

svg.js: Fix menu on Firefox (Forum #49202)

git-svn-id: https://svn.fhem.de/fhem/trunk@10799 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2016-02-12 15:44:13 +00:00
parent ff1322d098
commit 6afa85c397

View File

@ -79,6 +79,20 @@ sv_menu(evt, embed)
var lines = $(svg).find("[line_id]");
var hidden = $(svg).find(".hidden");
function
myPathSegList(node) // chrome 48+ removed the pathSegList interface
{
this.arr = $(node).attr("d").split(/ */);
this.arr.splice(0,1); // remove M
this.arr.splice(1,1); // remove L/Q/etc
this.numberOfItems = this.arr.length;
this.getItem = function(pos)
{
var xy = this.arr[pos].split(",");
return { x:parseFloat(xy[0]), y:parseFloat(xy[1]) };
}
}
function
showValOff() {
$(svg).find("[id]").each(function(){delete($(this).get(0).showVal)});
@ -198,22 +212,8 @@ sv_menu(evt, embed)
$("#content").append(par.div);
var pl = selNode[arrName];
if(!pl) { // chrome 48+ removed the pathSegList interface
function
myPathSegList(node)
{
this.arr = $(node).attr("d").split(/ */);
this.arr.splice(0,1); // remove M
this.arr.splice(1,1); // remove L/Q/etc
this.numberOfItems = this.arr.length;
this.getItem = function(pos)
{
var xy = this.arr[pos].split(",");
return { x:parseFloat(xy[0]), y:parseFloat(xy[1]) };
}
}
if(!pl)
selNode[arrName] = pl = new myPathSegList(selNode);
}
if(pl.numberOfItems > 2)
mousemove({pageX:pl.getItem(pl.numberOfItems-2).x});
}