Tabs: Removed abort method. Fixes #7150 - Tabs: Remove abort method.

This commit is contained in:
Scott González 2012-10-25 05:48:51 -04:00
parent 6a00d418bc
commit 828b3c420c
2 changed files with 0 additions and 27 deletions

View File

@ -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 ) );

View File

@ -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: {