From 57cc182a40e909868d41f9b1bb405b06138f6cae Mon Sep 17 00:00:00 2001 From: Colin Snover Date: Mon, 17 Jan 2011 15:22:49 -0600 Subject: [PATCH] Introduce a temporary hack to allow jQuery.fn.data("events") to continue to work. This will be going away in 1.6. More information will be available in the 1.5 release notes. --- src/data.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/data.js b/src/data.js index a1abc9e..21f0e3a 100644 --- a/src/data.js +++ b/src/data.js @@ -93,6 +93,13 @@ jQuery.extend({ thisCache[ name ] = data; } + // TODO: This is a hack for 1.5 ONLY. It will be removed in 1.6. Users should + // not attempt to inspect the internal events object using jQuery.data, as this + // internal data object is undocumented and subject to change. + if ( name === "events" && !thisCache[name] ) { + return thisCache[ internalKey ] && thisCache[ internalKey ].events; + } + return getByName ? thisCache[ name ] : thisCache; }, -- 1.7.10.4