From: Scott González Date: Sun, 12 Feb 2012 14:14:36 +0000 (-0500) Subject: Demos, Tests: Remove use 'that' instead of 'self'. Partial fix for #5404 - remove... X-Git-Tag: 1.9m7~59 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=4f909c50bad9cbdf4789d272ada71c51fa1226d3;p=jquery-ui.git Demos, Tests: Remove use 'that' instead of 'self'. Partial fix for #5404 - remove uses of 'var self = this;' --- 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; diff --git a/demos/autocomplete/categories.html b/demos/autocomplete/categories.html index 2eead8ad2..902867478 100644 --- a/demos/autocomplete/categories.html +++ b/demos/autocomplete/categories.html @@ -22,14 +22,14 @@