diff options
author | Adam Spiers <git@adamspiers.org> | 2015-01-11 23:01:08 +0000 |
---|---|---|
committer | Adam Spiers <git@adamspiers.org> | 2015-01-11 23:05:30 +0000 |
commit | 6e0c247e7e07b5c6732deedd194985da3e817007 (patch) | |
tree | d5b5c7c2484a7100627d2765892dd1ba93a4c397 /html/js | |
parent | c46d924bd01fd4cc571ebaeaceedb533e0988c2b (diff) | |
download | git-deps-6e0c247e7e07b5c6732deedd194985da3e817007.tar.gz |
show all refs in tip, not just what git describe finds
Diffstat (limited to 'html/js')
-rw-r--r-- | html/js/git-deps-graph.coffee | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/html/js/git-deps-graph.coffee b/html/js/git-deps-graph.coffee index dd66b78..f6edeb8 100644 --- a/html/js/git-deps-graph.coffee +++ b/html/js/git-deps-graph.coffee @@ -318,10 +318,11 @@ tip_html = (d) -> title = top.find("p.commit-title") title.text d.title - unless d.describe is "" + if d.refs title.append " <span />" - describe = title.children().first() - describe.addClass("commit-describe commit-ref").text(d.describe) + refs = title.children().first() + refs.addClass("commit-describe commit-ref") \ + .text(d.refs.join(" ")) top.find("span.commit-author").text(d.author_name) date = new Date(d.author_time * 1000) |