Commit 6dff742b authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge pull request #2852 from hiroponz/displaying-commit-on-new-window

Displaying commit on a new window, when clicking commit on network graph.
parents d46cb3fd f8a2db53
...@@ -282,7 +282,7 @@ ...@@ -282,7 +282,7 @@
cursor: "pointer" cursor: "pointer"
}) })
.click(function(){ .click(function(){
window.location = options.commit_url.replace('%s', commit.id); window.open(options.commit_url.replace('%s', commit.id), '_blank');
}) })
.hover(function(){ .hover(function(){
this.tooltip = r.commitTooltip(x, y + 5, commit); this.tooltip = r.commitTooltip(x, y + 5, commit);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment