Skip to content

Commit

Permalink
fixed a positioning issue with the commit detail overlay
Browse files Browse the repository at this point in the history
  • Loading branch information
lukx committed Jun 8, 2013
1 parent 7e790b7 commit 9357892
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/js/networkGraph.js
Expand Up @@ -524,7 +524,7 @@
detailOverlay.setCommit( this.data('commit'))
.show()
.positionTo( evt.pageX - commitsGraph.position().left + commitsGraph.scrollLeft() - 200,
evt.pageY - commitsGraph.position().top + commitsGraph.scrollLeft() + 10);
evt.pageY - commitsGraph.position().top + commitsGraph.scrollTop() + 10);
}

function handleCommitMouseout(evt) {
Expand Down

0 comments on commit 9357892

Please sign in to comment.