git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ad103c8
)
Make sure that we don't try to remove data from an applet. Re-Fixes #1675.
author
jeresig
<jeresig@gmail.com>
Tue, 2 Mar 2010 18:56:15 +0000
(13:56 -0500)
committer
jeresig
<jeresig@gmail.com>
Tue, 2 Mar 2010 18:56:15 +0000
(13:56 -0500)
src/manipulation.js
patch
|
blob
|
history
diff --git
a/src/manipulation.js
b/src/manipulation.js
index
f276a07
..
7dc8136
100644
(file)
--- a/
src/manipulation.js
+++ b/
src/manipulation.js
@@
-552,6
+552,10
@@
jQuery.extend({
deleteExpando = jQuery.support.deleteExpando;
for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) {
+ if ( elem.nodeName && jQuery.noData[elem.nodeName.toLowerCase()] ) {
+ continue;
+ }
+
id = elem[ jQuery.expando ];
if ( id ) {