Commit 163395793b787d86d43c61e6f90a6ce74b988e5c
1 parent
c31c84f5
Exists in
master
and in
4 other branches
network graph: fixed minor visual artefacts
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
vendor/assets/javascripts/branch-graph.js
... | ... | @@ -82,7 +82,7 @@ function branchGraph(holder) { |
82 | 82 | r.path(["M", x - 5, y + .0001, "l-5-2,0,4,5,-2C", x - 5, y, x - 17, y + 2, x - 20, y - 5, "L", cx, y - 5, cx, cy]) |
83 | 83 | .attr({stroke: colors[commits[i].space], "stroke-width": 2}); |
84 | 84 | } else { |
85 | - r.path(["M", x - 3, y + 4, "l-4,3,3,2,1,-4L", x - 10, y + 14, "L", x - 10, cy, cx, cy]) | |
85 | + r.path(["M", x - 3, y + 6, "l-4,3,4,2,0,-5L", x - 10, y + 20, "L", x - 10, cy, cx, cy]) | |
86 | 86 | .attr({stroke: colors[c.space], "stroke-width": 2}); |
87 | 87 | } |
88 | 88 | } | ... | ... |