Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Core: Patch over broken .removeData() in jQuery 1.6.1 + 1.6.2.
  • Loading branch information
scottgonzalez committed Nov 5, 2012
1 parent 8a32c39 commit 886d6fe
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions ui/jquery.ui.core.js
Expand Up @@ -230,6 +230,19 @@ if ( !$( "<a>" ).outerWidth( 1 ).jquery ) {
});
}

// support: jQuery 1.6.1, 1.6.2 (http://bugs.jquery.com/ticket/9413)
if ( $( "<a>" ).data( "a-b", "a" ).removeData( "a-b" ).data( "a-b" ) ) {
$.fn.removeData = (function( removeData ) {
return function( key ) {
if ( arguments.length ) {
return removeData.call( this, $.camelCase( key ) );
} else {
return removeData.call( this );
}
};
})( $.fn.removeData );
}




Expand Down

0 comments on commit 886d6fe

Please sign in to comment.