small refactoring for branch-graph.js
This commit is contained in:
parent
f33a80a522
commit
efc86f9711
1 changed files with 2 additions and 2 deletions
4
vendor/assets/javascripts/branch-graph.js
vendored
4
vendor/assets/javascripts/branch-graph.js
vendored
|
@ -79,10 +79,10 @@ function branchGraph(holder) {
|
|||
.attr({stroke: colors[c.space], "stroke-width": 2});
|
||||
|
||||
} else if (c.space < commits[i].space) {
|
||||
r.path(["M", x - 5, y + .0001, "l-5-2,0,4,5,-2C",x-5,y,x -17, y+2, x -20, y-10,"L", cx,y-10,cx , cy])
|
||||
r.path(["M", x - 5, y + .0001, "l-5-2,0,4,5,-2C", x - 5, y, x - 17, y + 2, x - 20, y - 10, "L", cx, y - 10, cx, cy])
|
||||
.attr({stroke: colors[commits[i].space], "stroke-width": 2});
|
||||
} else {
|
||||
r.path(["M", x-5, y, "l-5-2,0,4,5,-2C",x-5,y,x -17, y-2, x -20, y+10,"L", cx,y+10,cx , cy])
|
||||
r.path(["M", x - 5, y, "l-5-2,0,4,5,-2C", x - 5, y, x - 17, y - 2, x - 20, y + 10, "L", cx, y + 10, cx, cy])
|
||||
.attr({stroke: colors[commits[i].space], "stroke-width": 2});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue