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

Displaying commit on a new window, when clicking commit on network graph.
4-2-stable
Dmitriy Zaporozhets 2013-01-30 22:23:33 -08:00
commit 6dff742b66
1 changed files with 1 additions and 1 deletions

View File

@ -282,7 +282,7 @@
cursor: "pointer"
})
.click(function(){
window.location = options.commit_url.replace('%s', commit.id);
window.open(options.commit_url.replace('%s', commit.id), '_blank');
})
.hover(function(){
this.tooltip = r.commitTooltip(x, y + 5, commit);