From 199a721103b17c18dea7a9abaeb79866ef4a7f51 Mon Sep 17 00:00:00 2001 From: John Resig Date: Fri, 15 Jan 2010 15:41:09 -0500 Subject: [PATCH] Expose the proxy object on the object, for the benefit of plugin authors (Thanks to Justin Meyer for the suggestion). --- src/event.js | 2 ++ 1 file changed, 2 insertions(+) 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 ); }, -- 1.7.10.4