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:
4f99e79
)
jquery support: Closes #3758, fixes a memory leak on IE. Thanks Choan Galvez.
author
Ariel Flesler
<aflesler@gmail.com>
Mon, 29 Dec 2008 22:05:02 +0000
(22:05 +0000)
committer
Ariel Flesler
<aflesler@gmail.com>
Mon, 29 Dec 2008 22:05:02 +0000
(22:05 +0000)
src/support.js
patch
|
blob
|
history
diff --git
a/src/support.js
b/src/support.js
index
20289c9
..
6d6bbce
100644
(file)
--- a/
src/support.js
+++ b/
src/support.js
@@
-78,6
+78,7
@@
// Cloning a node shouldn't copy over any
// bound event handlers (IE does this)
jQuery.support.noCloneEvent = false;
+ div.detachEvent("onclick", arguments.callee);
});
div.cloneNode(true).fireEvent("onclick");
}
@@
-96,4
+97,4
@@
jQuery.props = {
maxlength: "maxLength",
cellspacing: "cellSpacing",
rowspan: "rowSpan"
-};
\ No newline at end of file
+};