From 15f9d91c78f672823c807e4f3aa60788a85ed33f Mon Sep 17 00:00:00 2001 From: John Resig Date: Mon, 7 Dec 2009 15:08:06 -0800 Subject: [PATCH] Fixed other nodeNode mistake, sigh. --- src/manipulation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/manipulation.js b/src/manipulation.js index e1657a8..1fe82fa 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 ]; } } -- 1.7.10.4