Skip to content

Commit

Permalink
Tabs: Removed abort method. Fixes #7150 - Tabs: Remove abort method.
Browse files Browse the repository at this point in the history
  • Loading branch information
scottgonzalez committed Oct 25, 2012
1 parent 6a00d41 commit 828b3c4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 27 deletions.
18 changes: 0 additions & 18 deletions tests/unit/tabs/tabs_deprecated.js
Expand Up @@ -240,22 +240,4 @@ test( "remove", function() {
equal( element.tabs( "option", "active" ), false );
});

asyncTest( "abort", function() {
expect( 1 );

var element = $( "#tabs2" ).tabs();
element.one( "tabsbeforeload", function( event, ui ) {
ui.jqXHR.error(function( jqXHR, status ) {
equal( status, "abort", "aborted" );
start();
});
});
// prevent IE from caching the request, so that it won't resolve before we call abort
element.find( ".ui-tabs-nav li:eq(2) .ui-tabs-anchor" ).attr( "href", function( href ) {
return href + "?" + (+ new Date());
});
element.tabs( "option", "active", 2 );
element.tabs( "abort" );
});

}( jQuery ) );
9 changes: 0 additions & 9 deletions ui/jquery.ui.tabs.js
Expand Up @@ -854,15 +854,6 @@ if ( $.uiBackCompat !== false ) {
};
};

// abort method
$.widget( "ui.tabs", $.ui.tabs, {
abort: function() {
if ( this.xhr ) {
this.xhr.abort();
}
}
});

// add/remove methods and events
$.widget( "ui.tabs", $.ui.tabs, {
options: {
Expand Down

0 comments on commit 828b3c4

Please sign in to comment.