diff options
author | Rick Waldron <waldron.rick@gmail.com> | 2015-03-09 12:03:43 -0400 |
---|---|---|
committer | Richard Gibson <richard.gibson@gmail.com> | 2015-03-09 13:51:16 -0400 |
commit | 332fd941b4ae80e8ca5e5a20aca91806038f4816 (patch) | |
tree | 2047917631ceba64dbadf08d4b9a9294c2aa073b /src | |
parent | 9b03f6df88a8d9dbda3f7893cdd84e3a3c70da17 (diff) | |
download | jquery-332fd941b4ae80e8ca5e5a20aca91806038f4816.tar.gz jquery-332fd941b4ae80e8ca5e5a20aca91806038f4816.zip |
Data: restore explicit data removal of private data in cleanData.
Fixes gh-2127
Closes gh-2132
Diffstat (limited to 'src')
-rw-r--r-- | src/manipulation.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/manipulation.js b/src/manipulation.js index be982dc2d..16a5a5208 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -305,7 +305,7 @@ jQuery.extend({ } } } - delete data.events; + delete elem[ dataPriv.expando ]; } } } |