@@ -136,7 +136,7 @@ $.widget( "ui.tabs", {
136136 return ;
137137 }
138138
139- this . _super ( "_setOption" , key , value ) ;
139+ this . _super ( key , value ) ;
140140
141141 // setting collapsible: false while collapsed; open first panel
142142 if ( key === "collapsible" && ! value && this . options . active === false ) {
@@ -323,7 +323,7 @@ $.widget( "ui.tabs", {
323323
324324 if ( tab . hasClass ( "ui-state-disabled" ) ||
325325 // tab is already loading
326- tab . hasClass ( "ui-tabs-loading" ) ||
326+ tab . hasClass ( "ui-tabs-loading" ) ||
327327 // can't switch durning an animation
328328 that . running ||
329329 // click on active header, but not collapsible
@@ -555,9 +555,9 @@ $.widget( "ui.tabs", {
555555 if ( status === "abort" ) {
556556 self . panels . stop ( false , true ) ;
557557 }
558-
558+
559559 self . lis . eq ( index ) . removeClass ( "ui-tabs-loading" ) ;
560-
560+
561561 if ( jqXHR === self . xhr ) {
562562 delete self . xhr ;
563563 }
@@ -674,13 +674,13 @@ if ( $.uiBackCompat !== false ) {
674674 spinner : "<em>Loading…</em>"
675675 } ,
676676 _create : function ( ) {
677- this . _super ( "_create" ) ;
677+ this . _super ( ) ;
678678 this . _bind ( {
679679 tabsbeforeload : function ( event , ui ) {
680680 if ( ! this . options . spinner ) {
681681 return ;
682682 }
683-
683+
684684 var span = ui . tab . find ( "span" ) ,
685685 html = span . html ( ) ;
686686 span . html ( this . options . spinner ) ;
@@ -973,7 +973,7 @@ if ( $.uiBackCompat !== false ) {
973973 }
974974 options . active = active ;
975975 }
976- this . _super ( "_create" ) ;
976+ this . _super ( ) ;
977977 } ,
978978 _cookie : function ( active ) {
979979 var cookie = [ this . cookie ||
@@ -985,19 +985,19 @@ if ( $.uiBackCompat !== false ) {
985985 return $ . cookie . apply ( null , cookie ) ;
986986 } ,
987987 _refresh : function ( ) {
988- this . _super ( "_refresh" ) ;
988+ this . _super ( ) ;
989989 if ( this . options . cookie ) {
990990 this . _cookie ( this . options . active , this . options . cookie ) ;
991991 }
992992 } ,
993993 _eventHandler : function ( event ) {
994- this . _superApply ( "_eventHandler" , arguments ) ;
994+ this . _superApply ( arguments ) ;
995995 if ( this . options . cookie ) {
996996 this . _cookie ( this . options . active , this . options . cookie ) ;
997997 }
998998 } ,
999999 _destroy : function ( ) {
1000- this . _super ( "_destroy" ) ;
1000+ this . _super ( ) ;
10011001 if ( this . options . cookie ) {
10021002 this . _cookie ( null , this . options . cookie ) ;
10031003 }
@@ -1012,7 +1012,7 @@ if ( $.uiBackCompat !== false ) {
10121012 _data . panel = _data . panel [ 0 ] ;
10131013 _data . tab = _data . tab [ 0 ] ;
10141014 }
1015- return this . _super ( "_trigger" , type , event , _data ) ;
1015+ return this . _super ( type , event , _data ) ;
10161016 }
10171017 } ) ;
10181018}
0 commit comments