Skip to content

Commit

Permalink
Updated work-around bug
Browse files Browse the repository at this point in the history
git-svn-id: https://flot.googlecode.com/svn/trunk@148 1e0a6537-2640-0410-bfb7-f154510ff394
  • Loading branch information
olau@iola.dk committed Mar 22, 2009
1 parent 67f936b commit a154fe6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jquery.flot.js
Expand Up @@ -496,7 +496,7 @@
// bind events
if (options.selection.mode != null || options.crosshair.mode != null
|| options.grid.hoverable) {
// FIXME: temp. work-around until jQuery bug 1871 is fixed
// FIXME: temp. work-around until jQuery bug 4398 is fixed
eventHolder.each(function () {
this.onmousemove = onMouseMove;
});
Expand Down Expand Up @@ -1778,7 +1778,7 @@
}

function onMouseMove(ev) {
// FIXME: temp. work-around until jQuery bug 1871 is fixed
// FIXME: temp. work-around until jQuery bug 4398 is fixed
var e = ev || window.event;
if (e.pageX == null && e.clientX != null) {
var de = document.documentElement, b = document.body;
Expand Down

0 comments on commit a154fe6

Please sign in to comment.