aboutsummaryrefslogtreecommitdiffstats
path: root/demos/accordion
diff options
context:
space:
mode:
Diffstat (limited to 'demos/accordion')
-rw-r--r--demos/accordion/hoverintent.html4
1 files changed, 4 insertions, 0 deletions
diff --git a/demos/accordion/hoverintent.html b/demos/accordion/hoverintent.html
index 09360d62d..184951cf2 100644
--- a/demos/accordion/hoverintent.html
+++ b/demos/accordion/hoverintent.html
@@ -50,6 +50,10 @@
if ( ( Math.abs( pX - cX ) + Math.abs( pY - cY ) ) < cfg.sensitivity ) {
clear();
event.type = "hoverintent";
+ // prevent accessing the original event since the new event
+ // is fired asynchronously and the old event is no longer
+ // usable (#6028)
+ event.originalEvent = {};
jQuery.event.handle.apply( self, args );
} else {
pX = cX;