Skip to content

Commit

Permalink
Fix DmitryBaranovskiy#999: Add search string to gradient url
Browse files Browse the repository at this point in the history
  • Loading branch information
ipetropolsky committed Feb 8, 2016
1 parent 3fb8318 commit f5d909b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/raphael.svg.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@
return "url('#" + id + "')";
}
var location = document.location;
return "url('" + location.origin + location.pathname + "#" + id + "')";
return "url('" + location.origin + location.pathname + location.search + "#" + id + "')";
},
updatePosition = function (o) {
var bbox = o.getBBox(1);
Expand Down

0 comments on commit f5d909b

Please sign in to comment.