Skip to content

Commit

Permalink
not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
mjanda committed Apr 5, 2015
1 parent 4debe18 commit 9013cfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dygraph-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ Dygraph.findPos = function(obj) {
d = document.documentElement;

return {
x: p.left + (w.pageXOffset || d.scrollLeft) - (d.clientLeft || 0),
y: p.top + (w.pageYOffset || d.scrollTop) - (d.clientTop || 0)
x: p.left + (w.pageXOffset || d.scrollLeft),
y: p.top + (w.pageYOffset || d.scrollTop)
}
};

Expand Down

0 comments on commit 9013cfe

Please sign in to comment.