diff options
author | John Resig <jeresig@gmail.com> | 2009-12-07 15:08:06 -0800 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2009-12-07 15:08:06 -0800 |
commit | 15f9d91c78f672823c807e4f3aa60788a85ed33f (patch) | |
tree | cdd72993030681307c1c8bbc5787067520d62e52 | |
parent | ed93204e108eb90aa863fbddf8acd992b9d4a1a5 (diff) | |
download | jquery-15f9d91c78f672823c807e4f3aa60788a85ed33f.tar.gz jquery-15f9d91c78f672823c807e4f3aa60788a85ed33f.zip |
Fixed other nodeNode mistake, sigh.
-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 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 ]; } } |