We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a32c39 commit 886d6feCopy full SHA for 886d6fe
ui/jquery.ui.core.js
@@ -230,6 +230,19 @@ if ( !$( "<a>" ).outerWidth( 1 ).jquery ) {
230
});
231
}
232
233
+// support: jQuery 1.6.1, 1.6.2 (http://bugs.jquery.com/ticket/9413)
234
+if ( $( "<a>" ).data( "a-b", "a" ).removeData( "a-b" ).data( "a-b" ) ) {
235
+ $.fn.removeData = (function( removeData ) {
236
+ return function( key ) {
237
+ if ( arguments.length ) {
238
+ return removeData.call( this, $.camelCase( key ) );
239
+ } else {
240
+ return removeData.call( this );
241
+ }
242
+ };
243
+ })( $.fn.removeData );
244
+}
245
+
246
247
248
0 commit comments