From 163395793b787d86d43c61e6f90a6ce74b988e5c Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin Date: Tue, 19 Jun 2012 16:15:13 +0400 Subject: [PATCH] network graph: fixed minor visual artefacts --- vendor/assets/javascripts/branch-graph.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/assets/javascripts/branch-graph.js b/vendor/assets/javascripts/branch-graph.js index 0f40c9f9dd2..e8699bdfbf2 100644 --- a/vendor/assets/javascripts/branch-graph.js +++ b/vendor/assets/javascripts/branch-graph.js @@ -82,7 +82,7 @@ function branchGraph(holder) { 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]) .attr({stroke: colors[commits[i].space], "stroke-width": 2}); } else { - r.path(["M", x - 3, y + 4, "l-4,3,3,2,1,-4L", x - 10, y + 14, "L", x - 10, cy, cx, cy]) + r.path(["M", x - 3, y + 6, "l-4,3,4,2,0,-5L", x - 10, y + 20, "L", x - 10, cy, cx, cy]) .attr({stroke: colors[c.space], "stroke-width": 2}); } }