mdtrooper 2016-03-09 11:07:30 +01:00
parent 73b16c177e
commit 2a833fbc73
1 changed files with 36 additions and 21 deletions

View File

@ -733,27 +733,42 @@ function arrow_by_pieces(target, id_arrow, id_node_to, id_node_from, wait) {
.append("g") .append("g")
.attr("class", "arrow_container"); .attr("class", "arrow_container");
arrow_layout.append("g") if (is_buggy_firefox) {
.attr("class", "body") arrow_layout.append("g")
.append("use") .attr("class", "body")
.attr("xlink:href", "images/maps/body_arrow.svg#body_arrow") .append("use")
.on("load", function() { .attr("xlink:href", "#body_arrow");
wait_load(function() {
arrow_by_pieces(
target, id_arrow, id_node_to, id_node_from, 0);
});
});
arrow_layout.append("g") arrow_layout.append("g")
.attr("class", "head") .attr("class", "head")
.append("use") .append("use")
.attr("xlink:href", "images/maps/head_arrow.svg#head_arrow") .attr("xlink:href", "#head_arrow");
.on("load", function() {
wait_load(function() { arrow_by_pieces(target, id_arrow, id_node_to, id_node_from, 0);
arrow_by_pieces( }
target, id_arrow, id_node_to, id_node_from, 0); else {
arrow_layout.append("g")
.attr("class", "body")
.append("use")
.attr("xlink:href", "images/maps/body_arrow.svg#body_arrow")
.on("load", function() {
wait_load(function() {
arrow_by_pieces(
target, id_arrow, id_node_to, id_node_from, 0);
});
}); });
});
arrow_layout.append("g")
.attr("class", "head")
.append("use")
.attr("xlink:href", "images/maps/head_arrow.svg#head_arrow")
.on("load", function() {
wait_load(function() {
arrow_by_pieces(
target, id_arrow, id_node_to, id_node_from, 0);
});
});
}
break; break;
/*---------------------------------------------*/ /*---------------------------------------------*/
/*---- Print head and body arrow by steps -----*/ /*---- Print head and body arrow by steps -----*/