Skip to content
Permalink
Browse files
Added an extra check for removing a named cache property - calling it…
… when it didn't exist caused an exception.
  • Loading branch information
jeresig committed Sep 9, 2007
1 parent 139b03a commit cd6ec6e
Showing 1 changed file with 10 additions and 8 deletions.
@@ -509,14 +509,16 @@ jQuery.extend({

// If we want to remove a specific section of the element's data
if ( name ) {
// Remove the section of cache data
delete jQuery.cache[ id ][ name ];

// If we've removed all the data, remove the element's cache
name = "";
for ( name in jQuery.cache[ id ] ) break;
if ( !name )
jQuery.removeData( elem );
if ( jQuery.cache[ id ] ) {
// Remove the section of cache data
delete jQuery.cache[ id ][ name ];

// If we've removed all the data, remove the element's cache
name = "";
for ( name in jQuery.cache[ id ] ) break;
if ( !name )
jQuery.removeData( elem );
}

// Otherwise, we want to remove all of the element's data
} else {

0 comments on commit cd6ec6e

Please sign in to comment.