Skip to content

Commit cf11d3d

Browse files
authored
The "onMouseMove" override was broken
Line 345 was `if (!timeout.onMouseMove)` when it should have been `if (!options.onMouseMove`, which cased an override to fail.
1 parent 2535c5d commit cf11d3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jTimeout.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@
342342
timeout.mouseMoved = false;
343343
}, inMS);
344344

345-
if (!timeout.onMouseMove)
345+
if (!options.onMouseMove)
346346
{
347347
$.get(options.extendUrl);
348348

0 commit comments

Comments
 (0)