From: John Resig Date: Fri, 15 Jan 2010 20:41:09 +0000 (-0500) Subject: Expose the proxy object on the object, for the benefit of plugin authors (Thanks... X-Git-Url: http://git.asbjorn.it/?p=jquery.git;a=commitdiff_plain;h=199a721103b17c18dea7a9abaeb79866ef4a7f51 Expose the proxy object on the object, for the benefit of plugin authors (Thanks to Justin Meyer for the suggestion). --- diff --git a/src/event.js b/src/event.js index f36139f..fb28cb9 100644 --- a/src/event.js +++ b/src/event.js @@ -428,6 +428,8 @@ jQuery.event = { jQuery.extend( proxy, data || {} ); proxy.guid += data.selector + data.live; + data.liveProxy = proxy; + jQuery.event.add( this, data.live, liveHandler, data ); },