From 9357892ce8686f25d6201c8f8e48d368fc795502 Mon Sep 17 00:00:00 2001 From: Lukas Domnick Date: Sat, 8 Jun 2013 07:42:28 +0200 Subject: [PATCH] fixed a positioning issue with the commit detail overlay --- web/js/networkGraph.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/js/networkGraph.js b/web/js/networkGraph.js index 37f6bd1..253e51a 100644 --- a/web/js/networkGraph.js +++ b/web/js/networkGraph.js @@ -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) {