]> source.dussan.org Git - jquery.git/commitdiff
Fixed other nodeNode mistake, sigh.
authorJohn Resig <jeresig@gmail.com>
Mon, 7 Dec 2009 23:08:06 +0000 (15:08 -0800)
committerJohn Resig <jeresig@gmail.com>
Mon, 7 Dec 2009 23:08:06 +0000 (15:08 -0800)
src/manipulation.js

index e1657a8cf58b65ea9f4e02b7f6e16e41f56be355..1fe82fa27ebe86b9addc06cfbc36d72ad0fe8a0a 100644 (file)
@@ -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 ];
                }
        }