diff options
Diffstat (limited to 'html/js/git-deps-graph.coffee')
-rw-r--r-- | html/js/git-deps-graph.coffee | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/html/js/git-deps-graph.coffee b/html/js/git-deps-graph.coffee index 59d5452..4bccfeb 100644 --- a/html/js/git-deps-graph.coffee +++ b/html/js/git-deps-graph.coffee @@ -194,6 +194,7 @@ draw_graph = (commitish) -> .data(gdd.links, link_key) paths.enter().append("svg:path") .attr("class", "link") + .attr("stroke", (d) -> color(link_key(d))) nodes = fg.selectAll(".node") .data(gdd.nodes, (d) -> d.sha1) global.nodes = nodes |