File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -291,13 +291,6 @@ $.widget( "ui.tabs", {
291
291
}
292
292
} ,
293
293
294
- // TODO: remove once jQuery core properly removes filters - see #4621
295
- _resetStyle : function ( $el , fx ) {
296
- if ( ! $ . support . opacity && fx . opacity ) {
297
- $el [ 0 ] . style . removeAttribute ( "filter" ) ;
298
- }
299
- } ,
300
-
301
294
_setupEvents : function ( event ) {
302
295
// attach tab event handler, unbind to avoid duplicates from former tabifying...
303
296
this . anchors . unbind ( ".tabs" ) ;
@@ -386,7 +379,6 @@ $.widget( "ui.tabs", {
386
379
if ( toShow . length && that . showFx ) {
387
380
toShow
388
381
. animate ( that . showFx , that . showFx . duration || "normal" , function ( ) {
389
- that . _resetStyle ( $ ( this ) , that . showFx ) ;
390
382
complete ( ) ;
391
383
} ) ;
392
384
} else {
@@ -399,7 +391,6 @@ $.widget( "ui.tabs", {
399
391
if ( toHide . length && that . hideFx ) {
400
392
toHide . animate ( that . hideFx , that . hideFx . duration || "normal" , function ( ) {
401
393
eventData . oldTab . closest ( "li" ) . removeClass ( "ui-tabs-active ui-state-active" ) ;
402
- that . _resetStyle ( $ ( this ) , that . hideFx ) ;
403
394
show ( ) ;
404
395
} ) ;
405
396
} else {
You can’t perform that action at this time.
0 commit comments