Fix for SVN rev [6537]. Events weren't being unbound correctly in Internet Explorer (cleanData wasn't handling malformed NodeList results correctly).

This commit is contained in:
John Resig 2009-09-15 15:56:18 +00:00
parent 5b9214e7d8
commit 7638fc5835

View file

@ -444,9 +444,8 @@ jQuery.extend({
});
function cleanData( elems ) {
for ( var i = 0, l = elems.length; i < l; i++ ) {
var id = elems[i][expando];
if ( id ) {
for ( var i = 0, elem, id; (elem = elems[i]) != null; i++ ) {
if ( (id = elem[expando]) ) {
delete jQuery.cache[ id ];
}
}