diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-11-05 15:38:31 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-11-05 15:38:31 -0500 |
commit | 886d6fe9fb8bcbf5e4e968bdd535a0fbcf2b88f7 (patch) | |
tree | 4df8d6f03f67a4c9dc38e3abbbdb84ef98eba516 | |
parent | 8a32c39136996db17c0ca2ece636d3814466934d (diff) | |
download | jquery-ui-886d6fe9fb8bcbf5e4e968bdd535a0fbcf2b88f7.tar.gz jquery-ui-886d6fe9fb8bcbf5e4e968bdd535a0fbcf2b88f7.zip |
Core: Patch over broken .removeData() in jQuery 1.6.1 + 1.6.2.
-rw-r--r-- | ui/jquery.ui.core.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ui/jquery.ui.core.js b/ui/jquery.ui.core.js index 5d8a9935c..288634376 100644 --- a/ui/jquery.ui.core.js +++ b/ui/jquery.ui.core.js @@ -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 ); +} + |