mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-31 01:35:36 +02:00
This commit is contained in:
parent
73b16c177e
commit
2a833fbc73
@ -733,6 +733,20 @@ function arrow_by_pieces(target, id_arrow, id_node_to, id_node_from, wait) {
|
||||
.append("g")
|
||||
.attr("class", "arrow_container");
|
||||
|
||||
if (is_buggy_firefox) {
|
||||
arrow_layout.append("g")
|
||||
.attr("class", "body")
|
||||
.append("use")
|
||||
.attr("xlink:href", "#body_arrow");
|
||||
|
||||
arrow_layout.append("g")
|
||||
.attr("class", "head")
|
||||
.append("use")
|
||||
.attr("xlink:href", "#head_arrow");
|
||||
|
||||
arrow_by_pieces(target, id_arrow, id_node_to, id_node_from, 0);
|
||||
}
|
||||
else {
|
||||
arrow_layout.append("g")
|
||||
.attr("class", "body")
|
||||
.append("use")
|
||||
@ -754,6 +768,7 @@ function arrow_by_pieces(target, id_arrow, id_node_to, id_node_from, wait) {
|
||||
target, id_arrow, id_node_to, id_node_from, 0);
|
||||
});
|
||||
});
|
||||
}
|
||||
break;
|
||||
/*---------------------------------------------*/
|
||||
/*---- Print head and body arrow by steps -----*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user