Skip to content

Commit 20daa13

Browse files
author
Robert Jackson
committed
Tweak link curves...
1 parent 16cce54 commit 20daa13

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/components/basic-tree.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ export default Ember.Component.extend({
9595
.attr("class", "link")
9696
.attr("d", function(d) {
9797
return "M" + d.y + "," + d.x
98-
+ "C" + (d.parent.y + 100) + "," + d.x
99-
+ " " + (d.parent.y + 100) + "," + d.parent.x
98+
+ "C" + (d.parent.y + 50) + "," + d.x
99+
+ " " + (d.parent.y + 50) + "," + d.parent.x
100100
+ " " + d.parent.y + "," + d.parent.x;
101101
});
102102

0 commit comments

Comments
 (0)