aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2009-12-07 15:08:06 -0800
committerJohn Resig <jeresig@gmail.com>2009-12-07 15:08:06 -0800
commit15f9d91c78f672823c807e4f3aa60788a85ed33f (patch)
treecdd72993030681307c1c8bbc5787067520d62e52
parented93204e108eb90aa863fbddf8acd992b9d4a1a5 (diff)
downloadjquery-15f9d91c78f672823c807e4f3aa60788a85ed33f.tar.gz
jquery-15f9d91c78f672823c807e4f3aa60788a85ed33f.zip
Fixed other nodeNode mistake, sigh.
-rw-r--r--src/manipulation.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/manipulation.js b/src/manipulation.js
index e1657a8cf..1fe82fa27 100644
--- a/src/manipulation.js
+++ b/src/manipulation.js
@@ -463,7 +463,7 @@ jQuery.extend({
function cleanData( elems ) {
for ( var i = 0, elem, id; (elem = elems[i]) != null; i++ ) {
- if ( !jQuery.noData[elem.nodeNode.toLowerCase()] && (id = elem[expando]) ) {
+ if ( !jQuery.noData[elem.nodeName.toLowerCase()] && (id = elem[expando]) ) {
delete jQuery.cache[ id ];
}
}