Commit a154fe66 authored by olau@iola.dk's avatar olau@iola.dk

Updated work-around bug

git-svn-id: https://flot.googlecode.com/svn/trunk@148 1e0a6537-2640-0410-bfb7-f154510ff394
parent 67f936bc
...@@ -496,7 +496,7 @@ ...@@ -496,7 +496,7 @@
// bind events // bind events
if (options.selection.mode != null || options.crosshair.mode != null if (options.selection.mode != null || options.crosshair.mode != null
|| options.grid.hoverable) { || 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 () { eventHolder.each(function () {
this.onmousemove = onMouseMove; this.onmousemove = onMouseMove;
}); });
...@@ -1778,7 +1778,7 @@ ...@@ -1778,7 +1778,7 @@
} }
function onMouseMove(ev) { 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; var e = ev || window.event;
if (e.pageX == null && e.clientX != null) { if (e.pageX == null && e.clientX != null) {
var de = document.documentElement, b = document.body; var de = document.documentElement, b = document.body;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment