Bug: Fixed position for drilldown link tooltip when dashboard requires scrolling, Fixes #1093

This commit is contained in:
Torkel Ödegaard
2014-11-19 15:26:14 +01:00
parent d0d1c5ea5f
commit 56321da9c1
2 changed files with 2 additions and 1 deletions

View File

@@ -196,7 +196,7 @@ function (angular, app, _, $) {
drilldownTooltip.text('click to go to: ' + panel.links[0].title);
drilldownTooltip.place_tt(e.clientX+20, e.clientY-15);
drilldownTooltip.place_tt(e.pageX+20, e.pageY-15);
});
}
};