javascript - marker-end didn't work with firefox -


i had issue marker-end using d3, used in gwt project,i created file .js in put svg elements including marker-end, , problem when run project in local-host firefox, marker-end displayed correctly, when deploy project in web server, here comes problem, marker-end dispears!!

this how use marker-end,no surprise here

var link = svg.selectall(".link")   .data(links)``   .enter().append("path")   .attr("class", "link")   .attr("marker-end", "url(#arrowhead)")   .attr("d", diagonal); 

does know why ? !!


Comments

Popular posts from this blog

Unable to remove the www from url on https using .htaccess -