Tabs: Removed url method. Fixes #7148 - Tabs: Remove url method.

This commit is contained in:
Scott González 2012-10-25 05:28:54 -04:00
parent 52a184e31c
commit acdd1917b2
2 changed files with 0 additions and 22 deletions

View File

@ -510,21 +510,6 @@ test( "length", function() {
equal( $( "#tabs2" ).tabs().tabs( "length" ), 5, "ajax tabs with missing panels" );
});
test( "url", function() {
expect( 2 );
var element = $( "#tabs2" ).tabs(),
anchor = element.find( ".ui-tabs-anchor" ).eq( 3 );
element.tabs( "url", 3, "data/test2.html" );
equal( anchor.attr( "href" ), "data/test2.html", "href was updated" );
element.one( "tabsbeforeload", function( event, ui ) {
equal( ui.ajaxSettings.url, "data/test2.html", "ajaxSettings.url" );
event.preventDefault();
});
element.tabs( "option", "active", 3 );
});
asyncTest( "abort", function() {
expect( 1 );

View File

@ -854,13 +854,6 @@ if ( $.uiBackCompat !== false ) {
};
};
// url method
$.widget( "ui.tabs", $.ui.tabs, {
url: function( index, url ) {
this.anchors.eq( index ).attr( "href", url );
}
});
// abort method
$.widget( "ui.tabs", $.ui.tabs, {
abort: function() {