diff options
Diffstat (limited to 'demos/accordion')
-rw-r--r-- | demos/accordion/hoverintent.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/accordion/hoverintent.html b/demos/accordion/hoverintent.html index 184951cf2..8f628bda8 100644 --- a/demos/accordion/hoverintent.html +++ b/demos/accordion/hoverintent.html @@ -29,7 +29,7 @@ $( this ).unbind( "mouseover", jQuery.event.special.hoverintent.handler ); }, handler: function( event ) { - var self = this, + var that = this, args = arguments, target = $( event.target ), cX, cY, pX, pY; @@ -54,7 +54,7 @@ // is fired asynchronously and the old event is no longer // usable (#6028) event.originalEvent = {}; - jQuery.event.handle.apply( self, args ); + jQuery.event.handle.apply( that, args ); } else { pX = cX; pY = cY; |