2012-02-27 00:49:51 +00:00
|
|
|
/*!
|
2008-09-04 22:03:30 +00:00
|
|
|
* jQuery UI Tabs @VERSION
|
2008-06-04 02:34:33 +00:00
|
|
|
*
|
2012-03-08 15:53:08 +00:00
|
|
|
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
2010-07-09 13:01:04 +00:00
|
|
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
|
|
* http://jquery.org/license
|
2008-06-04 02:34:33 +00:00
|
|
|
*
|
|
|
|
* http://docs.jquery.com/UI/Tabs
|
|
|
|
*
|
|
|
|
* Depends:
|
2009-09-17 10:39:12 +00:00
|
|
|
* jquery.ui.core.js
|
2009-12-22 19:51:24 +00:00
|
|
|
* jquery.ui.widget.js
|
2008-06-04 02:34:33 +00:00
|
|
|
*/
|
2010-07-13 13:57:58 +00:00
|
|
|
(function( $, undefined ) {
|
2008-06-04 02:34:33 +00:00
|
|
|
|
2012-01-03 18:18:13 +00:00
|
|
|
var tabId = 0,
|
|
|
|
rhash = /#.*$/;
|
2012-03-01 12:30:57 +00:00
|
|
|
|
2010-05-18 00:48:07 +00:00
|
|
|
function getNextTabId() {
|
|
|
|
return ++tabId;
|
|
|
|
}
|
|
|
|
|
2012-04-02 23:12:21 +00:00
|
|
|
function isLocal( anchor ) {
|
2012-01-03 18:00:02 +00:00
|
|
|
// clone the node to work around IE 6 not normalizing the href property
|
|
|
|
// if it's manually set, i.e., a.href = "#foo" kills the normalization
|
|
|
|
anchor = anchor.cloneNode( false );
|
2012-03-01 12:30:57 +00:00
|
|
|
return anchor.hash.length > 1 &&
|
2012-05-22 20:22:40 +00:00
|
|
|
anchor.href.replace( rhash, "" ) === location.href.replace( rhash, "" );
|
2012-04-02 23:12:21 +00:00
|
|
|
}
|
2011-08-11 20:48:58 +00:00
|
|
|
|
2010-07-28 15:28:14 +00:00
|
|
|
$.widget( "ui.tabs", {
|
2011-05-28 19:39:55 +00:00
|
|
|
version: "@VERSION",
|
2010-01-07 03:19:50 +00:00
|
|
|
options: {
|
2011-04-05 20:53:52 +00:00
|
|
|
active: null,
|
2010-01-07 03:19:50 +00:00
|
|
|
collapsible: false,
|
2010-07-28 15:28:14 +00:00
|
|
|
event: "click",
|
2012-05-14 18:40:06 +00:00
|
|
|
hide: null,
|
|
|
|
show: null,
|
2011-04-25 12:10:39 +00:00
|
|
|
|
|
|
|
// callbacks
|
|
|
|
activate: null,
|
|
|
|
beforeActivate: null,
|
|
|
|
beforeLoad: null,
|
2011-03-27 21:02:58 +00:00
|
|
|
load: null
|
2010-01-07 03:19:50 +00:00
|
|
|
},
|
2010-07-28 15:28:14 +00:00
|
|
|
|
2010-01-15 18:58:20 +00:00
|
|
|
_create: function() {
|
2012-04-02 23:12:21 +00:00
|
|
|
var panel,
|
|
|
|
that = this,
|
2012-05-22 17:46:33 +00:00
|
|
|
options = this.options,
|
2011-04-05 20:53:52 +00:00
|
|
|
active = options.active;
|
2011-03-27 00:37:26 +00:00
|
|
|
|
2012-05-22 17:46:33 +00:00
|
|
|
this.running = false;
|
2011-03-27 00:49:59 +00:00
|
|
|
|
2012-05-22 17:46:33 +00:00
|
|
|
this.element.addClass( "ui-tabs ui-widget ui-widget-content ui-corner-all" );
|
2011-03-27 00:37:26 +00:00
|
|
|
|
2012-05-22 17:46:33 +00:00
|
|
|
this._processTabs();
|
2011-03-27 00:37:26 +00:00
|
|
|
|
2011-04-05 20:53:52 +00:00
|
|
|
if ( active === null ) {
|
|
|
|
// check the fragment identifier in the URL
|
2011-03-27 00:37:26 +00:00
|
|
|
if ( location.hash ) {
|
2012-05-22 17:46:33 +00:00
|
|
|
this.anchors.each(function( i, anchor ) {
|
2012-05-18 20:11:14 +00:00
|
|
|
if ( anchor.hash === location.hash ) {
|
2011-04-05 20:53:52 +00:00
|
|
|
active = i;
|
2011-03-27 00:37:26 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2011-04-05 20:53:52 +00:00
|
|
|
|
|
|
|
// check for a tab marked active via a class
|
|
|
|
if ( active === null ) {
|
2012-05-22 17:46:33 +00:00
|
|
|
active = this.lis.filter( ".ui-tabs-active" ).index();
|
2011-04-05 20:53:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// no active tab, set to false
|
|
|
|
if ( active === null || active === -1 ) {
|
2012-05-22 17:46:33 +00:00
|
|
|
active = this.lis.length ? 0 : false;
|
2011-03-27 00:37:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-05 20:53:52 +00:00
|
|
|
// handle numbers: negative, out of range
|
|
|
|
if ( active !== false ) {
|
|
|
|
active = this.lis.eq( active ).index();
|
|
|
|
if ( active === -1 ) {
|
|
|
|
active = options.collapsible ? false : 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
options.active = active;
|
2011-03-27 00:37:26 +00:00
|
|
|
|
2011-04-11 17:49:22 +00:00
|
|
|
// don't allow collapsible: false and active: false
|
2011-04-19 16:54:41 +00:00
|
|
|
if ( !options.collapsible && options.active === false && this.anchors.length ) {
|
2011-04-11 17:49:22 +00:00
|
|
|
options.active = 0;
|
|
|
|
}
|
|
|
|
|
2011-03-27 00:37:26 +00:00
|
|
|
// Take disabling tabs via class attribute from HTML
|
|
|
|
// into account and update option properly.
|
2011-04-05 20:53:52 +00:00
|
|
|
if ( $.isArray( options.disabled ) ) {
|
|
|
|
options.disabled = $.unique( options.disabled.concat(
|
2012-04-03 23:59:08 +00:00
|
|
|
$.map( this.lis.filter( ".ui-state-disabled" ), function( li ) {
|
|
|
|
return that.lis.index( li );
|
2011-03-27 00:37:26 +00:00
|
|
|
})
|
|
|
|
) ).sort();
|
|
|
|
}
|
|
|
|
|
|
|
|
this._refresh();
|
|
|
|
|
|
|
|
// highlight selected tab
|
2011-03-29 11:44:01 +00:00
|
|
|
this.panels.hide();
|
|
|
|
this.lis.removeClass( "ui-tabs-active ui-state-active" );
|
2011-03-27 00:37:26 +00:00
|
|
|
// check for length avoids error when initializing empty list
|
2011-04-05 20:53:52 +00:00
|
|
|
if ( options.active !== false && this.anchors.length ) {
|
|
|
|
this.active = this._findActive( options.active );
|
2012-05-22 17:46:33 +00:00
|
|
|
panel = this._getPanelForTab( this.active );
|
2011-03-27 02:14:17 +00:00
|
|
|
|
2011-03-29 11:44:01 +00:00
|
|
|
panel.show();
|
2011-04-05 20:53:52 +00:00
|
|
|
this.lis.eq( options.active ).addClass( "ui-tabs-active ui-state-active" );
|
|
|
|
this.load( options.active );
|
2011-04-04 15:22:32 +00:00
|
|
|
} else {
|
|
|
|
this.active = $();
|
2011-03-27 00:37:26 +00:00
|
|
|
}
|
2008-06-04 02:34:33 +00:00
|
|
|
},
|
2008-11-21 04:48:06 +00:00
|
|
|
|
2012-01-21 13:46:02 +00:00
|
|
|
_getCreateEventData: function() {
|
|
|
|
return {
|
|
|
|
tab: this.active,
|
|
|
|
panel: !this.active.length ? $() : this._getPanelForTab( this.active )
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2010-07-28 15:28:14 +00:00
|
|
|
_setOption: function( key, value ) {
|
2012-04-02 23:12:21 +00:00
|
|
|
if ( key === "active" ) {
|
2011-04-04 21:06:13 +00:00
|
|
|
// _activate() will handle invalid values and update this.options
|
2011-03-29 02:28:59 +00:00
|
|
|
this._activate( value );
|
2011-04-04 21:06:13 +00:00
|
|
|
return;
|
2008-06-04 02:34:33 +00:00
|
|
|
}
|
2011-04-04 21:06:13 +00:00
|
|
|
|
2011-04-17 23:53:04 +00:00
|
|
|
if ( key === "disabled" ) {
|
|
|
|
// don't use the widget factory's disabled handling
|
|
|
|
this._setupDisabled( value );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-11-18 11:19:32 +00:00
|
|
|
this._super( key, value);
|
2011-04-17 23:53:04 +00:00
|
|
|
|
2011-04-11 17:49:22 +00:00
|
|
|
// setting collapsible: false while collapsed; open first panel
|
|
|
|
if ( key === "collapsible" && !value && this.options.active === false ) {
|
|
|
|
this._activate( 0 );
|
|
|
|
}
|
|
|
|
|
2011-04-17 23:53:04 +00:00
|
|
|
if ( key === "event" ) {
|
|
|
|
this._setupEvents( value );
|
|
|
|
}
|
2008-06-04 02:34:33 +00:00
|
|
|
},
|
2008-11-21 04:48:06 +00:00
|
|
|
|
2012-05-18 20:11:14 +00:00
|
|
|
_tabId: function( tab ) {
|
|
|
|
return tab.attr( "aria-controls" ) || "ui-tabs-" + getNextTabId();
|
2008-06-04 02:34:33 +00:00
|
|
|
},
|
2008-11-21 04:48:06 +00:00
|
|
|
|
2010-07-28 15:28:14 +00:00
|
|
|
_sanitizeSelector: function( hash ) {
|
2012-04-04 08:52:41 +00:00
|
|
|
return hash ? hash.replace( /[!"$%&'()*+,.\/:;<=>?@\[\]\^`{|}~]/g, "\\$&" ) : "";
|
2008-10-02 14:20:35 +00:00
|
|
|
},
|
2008-11-21 04:48:06 +00:00
|
|
|
|
2011-03-27 00:37:26 +00:00
|
|
|
refresh: function() {
|
2012-04-02 23:12:21 +00:00
|
|
|
var next,
|
2011-04-19 16:54:41 +00:00
|
|
|
options = this.options,
|
2011-04-28 18:38:57 +00:00
|
|
|
lis = this.list.children( ":has(a[href])" );
|
2011-04-19 16:54:41 +00:00
|
|
|
|
2011-04-28 18:38:57 +00:00
|
|
|
// get disabled tabs from class attribute from HTML
|
|
|
|
// this will get converted to a boolean if needed in _refresh()
|
|
|
|
options.disabled = $.map( lis.filter( ".ui-state-disabled" ), function( tab ) {
|
|
|
|
return lis.index( tab );
|
2011-04-19 16:54:41 +00:00
|
|
|
});
|
2011-03-27 00:37:26 +00:00
|
|
|
|
|
|
|
this._processTabs();
|
|
|
|
this._refresh();
|
2011-04-19 16:54:41 +00:00
|
|
|
this.panels.not( this._getPanelForTab( this.active ) ).hide();
|
|
|
|
|
2011-04-28 18:38:57 +00:00
|
|
|
// was collapsed or no tabs
|
|
|
|
if ( options.active === false || !this.anchors.length ) {
|
2011-04-19 16:54:41 +00:00
|
|
|
options.active = false;
|
|
|
|
this.active = $();
|
2011-04-28 18:38:57 +00:00
|
|
|
// was active, but active tab is gone
|
|
|
|
} else if ( this.active.length && !$.contains( this.list[ 0 ], this.active[ 0 ] ) ) {
|
|
|
|
// activate previous tab
|
2012-04-02 23:12:21 +00:00
|
|
|
next = options.active - 1;
|
2011-04-19 16:54:41 +00:00
|
|
|
this._activate( next >= 0 ? next : 0 );
|
2011-04-28 18:38:57 +00:00
|
|
|
// was active, active tab still exists
|
2011-04-19 16:54:41 +00:00
|
|
|
} else {
|
2011-04-28 18:38:57 +00:00
|
|
|
// make sure active index is correct
|
2012-05-18 20:11:14 +00:00
|
|
|
options.active = this.lis.index( this.active );
|
2011-04-19 16:54:41 +00:00
|
|
|
}
|
2011-03-27 00:37:26 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
_refresh: function() {
|
2011-04-28 18:38:57 +00:00
|
|
|
var options = this.options;
|
2011-03-27 00:37:26 +00:00
|
|
|
|
2011-04-05 20:53:52 +00:00
|
|
|
this.element.toggleClass( "ui-tabs-collapsible", options.collapsible );
|
2011-04-28 18:38:57 +00:00
|
|
|
this.list.addClass( "ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all" );
|
2011-04-05 20:53:52 +00:00
|
|
|
this.lis.addClass( "ui-state-default ui-corner-top" );
|
2012-05-18 20:11:14 +00:00
|
|
|
this.anchors.addClass( "ui-tabs-anchor" );
|
2011-04-05 20:53:52 +00:00
|
|
|
this.panels.addClass( "ui-tabs-panel ui-widget-content ui-corner-bottom" );
|
2011-03-27 00:37:26 +00:00
|
|
|
|
2011-04-17 23:51:45 +00:00
|
|
|
this._setupDisabled( options.disabled );
|
2011-04-05 20:53:52 +00:00
|
|
|
this._setupEvents( options.event );
|
2011-03-27 00:37:26 +00:00
|
|
|
|
|
|
|
// remove all handlers, may run on existing tabs
|
|
|
|
this.lis.unbind( ".tabs" );
|
|
|
|
this._focusable( this.lis );
|
|
|
|
this._hoverable( this.lis );
|
|
|
|
},
|
|
|
|
|
|
|
|
_processTabs: function() {
|
2012-04-03 23:59:08 +00:00
|
|
|
var that = this;
|
2009-01-22 13:10:18 +00:00
|
|
|
|
2012-01-21 13:04:39 +00:00
|
|
|
this.list = this._getList();
|
2012-04-03 23:59:08 +00:00
|
|
|
this.lis = this.list.find( "> li:has(a[href])" );
|
2010-07-28 15:28:14 +00:00
|
|
|
this.anchors = this.lis.map(function() {
|
|
|
|
return $( "a", this )[ 0 ];
|
|
|
|
});
|
2012-04-03 23:59:08 +00:00
|
|
|
this.panels = $();
|
2009-02-18 21:44:34 +00:00
|
|
|
|
2010-07-28 15:28:14 +00:00
|
|
|
this.anchors.each(function( i, a ) {
|
2012-05-18 20:11:14 +00:00
|
|
|
var selector, panel, id,
|
|
|
|
tab = $( a ).closest( "li" );
|
2009-02-22 17:40:16 +00:00
|
|
|
|
2008-06-04 02:34:33 +00:00
|
|
|
// inline tab
|
2011-08-11 20:48:58 +00:00
|
|
|
if ( isLocal( a ) ) {
|
|
|
|
selector = a.hash;
|
2012-04-03 23:59:08 +00:00
|
|
|
panel = that.element.find( that._sanitizeSelector( selector ) );
|
2008-06-04 02:34:33 +00:00
|
|
|
// remote tab
|
2011-08-11 20:48:58 +00:00
|
|
|
} else {
|
2012-05-18 20:11:14 +00:00
|
|
|
id = that._tabId( tab );
|
2011-03-27 02:14:17 +00:00
|
|
|
selector = "#" + id;
|
2012-04-03 23:59:08 +00:00
|
|
|
panel = that.element.find( selector );
|
2011-03-27 02:14:17 +00:00
|
|
|
if ( !panel.length ) {
|
2012-04-03 23:59:08 +00:00
|
|
|
panel = that._createPanel( id );
|
|
|
|
panel.insertAfter( that.panels[ i - 1 ] || that.list );
|
2008-06-04 02:34:33 +00:00
|
|
|
}
|
2009-02-19 20:19:13 +00:00
|
|
|
}
|
2011-03-27 02:14:17 +00:00
|
|
|
|
|
|
|
if ( panel.length) {
|
2012-04-03 23:59:08 +00:00
|
|
|
that.panels = that.panels.add( panel );
|
2011-03-27 02:14:17 +00:00
|
|
|
}
|
2012-05-18 20:11:14 +00:00
|
|
|
tab.attr( "aria-controls", selector.substring( 1 ) );
|
2008-06-04 02:34:33 +00:00
|
|
|
});
|
2011-03-27 00:37:26 +00:00
|
|
|
},
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2012-01-21 13:04:39 +00:00
|
|
|
// allow overriding how to find the list for rare usage scenarios (#7715)
|
|
|
|
_getList: function() {
|
|
|
|
return this.element.find( "ol,ul" ).eq( 0 );
|
|
|
|
},
|
|
|
|
|
2011-03-27 19:12:53 +00:00
|
|
|
_createPanel: function( id ) {
|
2012-04-03 23:59:08 +00:00
|
|
|
return $( "<div>" )
|
|
|
|
.attr( "id", id )
|
|
|
|
.addClass( "ui-tabs-panel ui-widget-content ui-corner-bottom" )
|
|
|
|
.data( "ui-tabs-destroy", true );
|
2011-03-27 19:12:53 +00:00
|
|
|
},
|
|
|
|
|
2011-04-17 23:51:45 +00:00
|
|
|
_setupDisabled: function( disabled ) {
|
|
|
|
if ( $.isArray( disabled ) ) {
|
|
|
|
if ( !disabled.length ) {
|
|
|
|
disabled = false;
|
|
|
|
} else if ( disabled.length === this.anchors.length ) {
|
|
|
|
disabled = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// disable tabs
|
|
|
|
for ( var i = 0, li; ( li = this.lis[ i ] ); i++ ) {
|
2012-04-03 23:59:08 +00:00
|
|
|
$( li ).toggleClass( "ui-state-disabled",
|
|
|
|
( disabled === true || $.inArray( i, disabled ) !== -1 ) );
|
2011-04-17 23:51:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
this.options.disabled = disabled;
|
|
|
|
},
|
|
|
|
|
2011-03-27 00:37:26 +00:00
|
|
|
_setupEvents: function( event ) {
|
2012-05-22 19:12:38 +00:00
|
|
|
var events = {
|
|
|
|
click: function( event ) {
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
|
|
|
};
|
2011-03-27 00:37:26 +00:00
|
|
|
if ( event ) {
|
2012-05-22 19:12:38 +00:00
|
|
|
$.each( event.split(" "), function( index, eventName ) {
|
|
|
|
events[ eventName ] = "_eventHandler";
|
|
|
|
});
|
2011-03-27 00:37:26 +00:00
|
|
|
}
|
2012-05-22 19:12:38 +00:00
|
|
|
this.anchors.unbind( ".tabs" );
|
|
|
|
this._bind( this.anchors, events );
|
2011-03-27 00:37:26 +00:00
|
|
|
},
|
|
|
|
|
2011-03-26 16:04:14 +00:00
|
|
|
_eventHandler: function( event ) {
|
2012-05-22 17:46:33 +00:00
|
|
|
var options = this.options,
|
|
|
|
active = this.active,
|
2012-05-18 20:11:14 +00:00
|
|
|
anchor = $( event.currentTarget ),
|
|
|
|
tab = anchor.closest( "li" ),
|
|
|
|
clickedIsActive = tab[ 0 ] === active[ 0 ],
|
2011-04-04 15:22:32 +00:00
|
|
|
collapsing = clickedIsActive && options.collapsible,
|
2012-05-22 17:46:33 +00:00
|
|
|
toShow = collapsing ? $() : this._getPanelForTab( tab ),
|
|
|
|
toHide = !active.length ? $() : this._getPanelForTab( active ),
|
2011-04-04 15:22:32 +00:00
|
|
|
eventData = {
|
|
|
|
oldTab: active,
|
|
|
|
oldPanel: toHide,
|
2012-05-18 20:11:14 +00:00
|
|
|
newTab: collapsing ? $() : tab,
|
2011-04-04 15:22:32 +00:00
|
|
|
newPanel: toShow
|
|
|
|
};
|
|
|
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
if ( tab.hasClass( "ui-state-disabled" ) ||
|
|
|
|
// tab is already loading
|
2011-11-18 11:19:32 +00:00
|
|
|
tab.hasClass( "ui-tabs-loading" ) ||
|
2011-04-04 15:22:32 +00:00
|
|
|
// can't switch durning an animation
|
2012-05-22 17:46:33 +00:00
|
|
|
this.running ||
|
2011-04-04 15:22:32 +00:00
|
|
|
// click on active header, but not collapsible
|
|
|
|
( clickedIsActive && !options.collapsible ) ||
|
|
|
|
// allow canceling activation
|
2012-05-22 17:46:33 +00:00
|
|
|
( this._trigger( "beforeActivate", event, eventData ) === false ) ) {
|
2011-03-26 16:04:14 +00:00
|
|
|
return;
|
|
|
|
}
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2012-05-22 17:46:33 +00:00
|
|
|
options.active = collapsing ? false : this.lis.index( tab );
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2012-05-22 17:46:33 +00:00
|
|
|
this.active = clickedIsActive ? $() : tab;
|
|
|
|
if ( this.xhr ) {
|
|
|
|
this.xhr.abort();
|
2011-03-26 19:23:08 +00:00
|
|
|
}
|
2009-02-18 21:44:34 +00:00
|
|
|
|
2011-05-11 14:08:06 +00:00
|
|
|
if ( !toHide.length && !toShow.length ) {
|
2012-05-21 12:31:38 +00:00
|
|
|
$.error( "jQuery UI Tabs: Mismatching fragment identifier." );
|
2011-03-26 16:04:14 +00:00
|
|
|
}
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2011-04-04 15:22:32 +00:00
|
|
|
if ( toShow.length ) {
|
2011-08-10 13:30:52 +00:00
|
|
|
// TODO make passing in node possible
|
2012-05-22 17:46:33 +00:00
|
|
|
this.load( this.lis.index( tab ), event );
|
2011-05-14 11:26:46 +00:00
|
|
|
}
|
2012-05-22 17:46:33 +00:00
|
|
|
this._toggle( event, eventData );
|
2011-05-14 11:26:46 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
// handles show/hide for selecting tabs
|
|
|
|
_toggle: function( event, eventData ) {
|
|
|
|
var that = this,
|
|
|
|
toShow = eventData.newPanel,
|
|
|
|
toHide = eventData.oldPanel;
|
|
|
|
|
2012-05-14 18:40:06 +00:00
|
|
|
this.running = true;
|
2011-05-14 11:26:46 +00:00
|
|
|
|
|
|
|
function complete() {
|
|
|
|
that.running = false;
|
|
|
|
that._trigger( "activate", event, eventData );
|
|
|
|
}
|
|
|
|
|
|
|
|
function show() {
|
|
|
|
eventData.newTab.closest( "li" ).addClass( "ui-tabs-active ui-state-active" );
|
|
|
|
|
2012-05-14 18:40:06 +00:00
|
|
|
if ( toShow.length && that.options.show ) {
|
|
|
|
that._show( toShow, that.options.show, complete );
|
2011-05-14 11:26:46 +00:00
|
|
|
} else {
|
|
|
|
toShow.show();
|
|
|
|
complete();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// start out by hiding, then showing, then completing
|
2012-05-14 18:40:06 +00:00
|
|
|
if ( toHide.length && this.options.hide ) {
|
|
|
|
this._hide( toHide, this.options.hide, function() {
|
2011-05-14 11:26:46 +00:00
|
|
|
eventData.oldTab.closest( "li" ).removeClass( "ui-tabs-active ui-state-active" );
|
|
|
|
show();
|
|
|
|
});
|
2011-05-11 14:08:06 +00:00
|
|
|
} else {
|
2011-05-14 11:26:46 +00:00
|
|
|
eventData.oldTab.closest( "li" ).removeClass( "ui-tabs-active ui-state-active" );
|
|
|
|
toHide.hide();
|
|
|
|
show();
|
2011-03-29 02:28:59 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_activate: function( index ) {
|
2012-05-18 20:11:14 +00:00
|
|
|
var anchor,
|
|
|
|
active = this._findActive( index );
|
2011-03-29 02:28:59 +00:00
|
|
|
|
|
|
|
// trying to activate the already active panel
|
2012-05-18 20:11:14 +00:00
|
|
|
if ( active[ 0 ] === this.active[ 0 ] ) {
|
2011-03-29 02:28:59 +00:00
|
|
|
return;
|
2011-03-26 16:04:14 +00:00
|
|
|
}
|
2011-03-29 02:28:59 +00:00
|
|
|
|
|
|
|
// trying to collapse, simulate a click on the current active header
|
2012-05-18 20:11:14 +00:00
|
|
|
if ( !active.length ) {
|
|
|
|
active = this.active;
|
|
|
|
}
|
2011-03-29 02:28:59 +00:00
|
|
|
|
2012-05-18 20:11:14 +00:00
|
|
|
anchor = active.find( ".ui-tabs-anchor" )[ 0 ];
|
2011-03-29 02:28:59 +00:00
|
|
|
this._eventHandler({
|
2012-05-18 20:11:14 +00:00
|
|
|
target: anchor,
|
|
|
|
currentTarget: anchor,
|
2011-03-29 02:28:59 +00:00
|
|
|
preventDefault: $.noop
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
_findActive: function( selector ) {
|
2012-05-18 20:11:14 +00:00
|
|
|
if ( typeof selector === "number" ) {
|
|
|
|
return this.lis.eq( selector );
|
|
|
|
}
|
|
|
|
if ( typeof selector === "string" ) {
|
|
|
|
return this.anchors.filter( "[href$='" + selector + "']" ).closest( "li" );
|
|
|
|
}
|
|
|
|
return $();
|
2008-06-04 02:34:33 +00:00
|
|
|
},
|
2009-01-31 00:45:14 +00:00
|
|
|
|
2012-02-27 16:48:17 +00:00
|
|
|
_getIndex: function( index ) {
|
2010-07-16 16:37:54 +00:00
|
|
|
// meta-function to give users option to provide a href string instead of a numerical index.
|
2012-04-02 23:12:21 +00:00
|
|
|
if ( typeof index === "string" ) {
|
2012-03-22 17:17:17 +00:00
|
|
|
index = this.anchors.index( this.anchors.filter( "[href$='" + index + "']" ) );
|
2010-07-16 16:37:54 +00:00
|
|
|
}
|
2010-07-28 15:28:14 +00:00
|
|
|
|
2010-07-16 16:37:54 +00:00
|
|
|
return index;
|
|
|
|
},
|
|
|
|
|
2011-02-01 02:56:55 +00:00
|
|
|
_destroy: function() {
|
2011-03-26 19:23:08 +00:00
|
|
|
if ( this.xhr ) {
|
|
|
|
this.xhr.abort();
|
|
|
|
}
|
2009-01-26 11:34:28 +00:00
|
|
|
|
2011-02-01 02:56:55 +00:00
|
|
|
this.element.removeClass( "ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible" );
|
2010-07-28 15:28:14 +00:00
|
|
|
|
|
|
|
this.list.removeClass( "ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all" );
|
2009-01-26 11:34:28 +00:00
|
|
|
|
2011-08-10 13:30:52 +00:00
|
|
|
this.anchors
|
2012-05-18 20:11:14 +00:00
|
|
|
.removeClass( "ui-tabs-anchor" )
|
2011-08-10 13:30:52 +00:00
|
|
|
.unbind( ".tabs" )
|
|
|
|
.removeData( "href.tabs" )
|
|
|
|
.removeData( "load.tabs" );
|
2009-01-26 11:34:28 +00:00
|
|
|
|
2010-07-28 15:28:14 +00:00
|
|
|
this.lis.unbind( ".tabs" ).add( this.panels ).each(function() {
|
2012-03-01 12:31:25 +00:00
|
|
|
if ( $.data( this, "ui-tabs-destroy" ) ) {
|
2010-07-28 15:28:14 +00:00
|
|
|
$( this ).remove();
|
|
|
|
} else {
|
|
|
|
$( this ).removeClass([
|
|
|
|
"ui-state-default",
|
|
|
|
"ui-corner-top",
|
2011-03-29 11:44:01 +00:00
|
|
|
"ui-tabs-active",
|
2010-07-28 15:28:14 +00:00
|
|
|
"ui-state-active",
|
|
|
|
"ui-state-disabled",
|
|
|
|
"ui-tabs-panel",
|
|
|
|
"ui-widget-content",
|
2011-03-29 11:44:01 +00:00
|
|
|
"ui-corner-bottom"
|
2010-07-28 15:28:14 +00:00
|
|
|
].join( " " ) );
|
2009-02-22 14:00:11 +00:00
|
|
|
}
|
2009-01-26 11:34:28 +00:00
|
|
|
});
|
|
|
|
|
2009-04-15 02:33:28 +00:00
|
|
|
return this;
|
2009-01-26 11:34:28 +00:00
|
|
|
},
|
2008-11-21 04:48:06 +00:00
|
|
|
|
2010-07-28 15:28:14 +00:00
|
|
|
enable: function( index ) {
|
2011-04-17 23:51:45 +00:00
|
|
|
var disabled = this.options.disabled;
|
2011-04-18 01:09:47 +00:00
|
|
|
if ( disabled === false ) {
|
|
|
|
return;
|
|
|
|
}
|
2011-04-17 23:51:45 +00:00
|
|
|
|
2011-02-06 19:49:42 +00:00
|
|
|
if ( index === undefined ) {
|
2011-04-17 23:51:45 +00:00
|
|
|
disabled = false;
|
|
|
|
} else {
|
|
|
|
index = this._getIndex( index );
|
|
|
|
if ( $.isArray( disabled ) ) {
|
|
|
|
disabled = $.map( disabled, function( num ) {
|
|
|
|
return num !== index ? num : null;
|
|
|
|
});
|
|
|
|
} else {
|
2011-04-18 01:09:47 +00:00
|
|
|
disabled = $.map( this.lis, function( li, num ) {
|
|
|
|
return num !== index ? num : null;
|
|
|
|
});
|
2011-02-06 19:49:42 +00:00
|
|
|
}
|
|
|
|
}
|
2011-04-17 23:51:45 +00:00
|
|
|
this._setupDisabled( disabled );
|
2008-06-04 02:34:33 +00:00
|
|
|
},
|
2008-11-21 04:48:06 +00:00
|
|
|
|
2010-07-28 15:28:14 +00:00
|
|
|
disable: function( index ) {
|
2011-04-17 23:51:45 +00:00
|
|
|
var disabled = this.options.disabled;
|
2011-04-18 01:09:47 +00:00
|
|
|
if ( disabled === true ) {
|
|
|
|
return;
|
|
|
|
}
|
2011-04-17 23:51:45 +00:00
|
|
|
|
2011-02-06 19:49:42 +00:00
|
|
|
if ( index === undefined ) {
|
2011-04-17 23:51:45 +00:00
|
|
|
disabled = true;
|
|
|
|
} else {
|
|
|
|
index = this._getIndex( index );
|
2011-04-28 16:04:08 +00:00
|
|
|
if ( $.inArray( index, disabled ) !== -1 ) {
|
|
|
|
return;
|
|
|
|
}
|
2011-04-17 23:51:45 +00:00
|
|
|
if ( $.isArray( disabled ) ) {
|
|
|
|
disabled = $.merge( [ index ], disabled ).sort();
|
|
|
|
} else {
|
|
|
|
disabled = [ index ];
|
2011-02-06 19:49:42 +00:00
|
|
|
}
|
2008-06-04 02:34:33 +00:00
|
|
|
}
|
2011-04-17 23:51:45 +00:00
|
|
|
this._setupDisabled( disabled );
|
2008-06-04 02:34:33 +00:00
|
|
|
},
|
2008-11-21 04:48:06 +00:00
|
|
|
|
2011-04-05 15:28:05 +00:00
|
|
|
load: function( index, event ) {
|
2010-07-28 15:28:14 +00:00
|
|
|
index = this._getIndex( index );
|
2012-04-03 23:59:08 +00:00
|
|
|
var that = this,
|
2012-05-18 20:11:14 +00:00
|
|
|
tab = this.lis.eq( index ),
|
|
|
|
anchor = tab.find( ".ui-tabs-anchor" ),
|
2012-05-22 17:46:33 +00:00
|
|
|
panel = this._getPanelForTab( tab ),
|
2011-04-05 15:28:05 +00:00
|
|
|
eventData = {
|
2012-05-18 20:11:14 +00:00
|
|
|
tab: tab,
|
2011-04-05 15:28:05 +00:00
|
|
|
panel: panel
|
|
|
|
};
|
2009-02-18 21:44:34 +00:00
|
|
|
|
2011-03-26 19:00:39 +00:00
|
|
|
// not remote
|
2011-08-11 20:48:58 +00:00
|
|
|
if ( isLocal( anchor[ 0 ] ) ) {
|
2008-06-04 02:34:33 +00:00
|
|
|
return;
|
|
|
|
}
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2011-03-26 19:00:39 +00:00
|
|
|
this.xhr = $.ajax({
|
2011-08-11 20:48:58 +00:00
|
|
|
url: anchor.attr( "href" ),
|
2011-03-26 19:00:39 +00:00
|
|
|
beforeSend: function( jqXHR, settings ) {
|
2012-04-03 23:59:08 +00:00
|
|
|
return that._trigger( "beforeLoad", event,
|
2011-04-05 15:28:05 +00:00
|
|
|
$.extend( { jqXHR : jqXHR, ajaxSettings: settings }, eventData ) );
|
2011-03-26 19:00:39 +00:00
|
|
|
}
|
|
|
|
});
|
2009-02-18 21:44:34 +00:00
|
|
|
|
2012-05-16 21:14:50 +00:00
|
|
|
// support: jQuery <1.8
|
|
|
|
// jQuery <1.8 returns false if the request is canceled in beforeSend,
|
|
|
|
// but as of 1.8, $.ajax() always returns a jqXHR object.
|
|
|
|
if ( this.xhr && this.xhr.statusText !== "canceled" ) {
|
2012-05-18 20:11:14 +00:00
|
|
|
tab.addClass( "ui-tabs-loading" );
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2011-03-26 19:00:39 +00:00
|
|
|
this.xhr
|
2011-04-05 15:28:05 +00:00
|
|
|
.success(function( response ) {
|
2012-05-16 23:22:49 +00:00
|
|
|
// support: jQuery <1.8
|
|
|
|
// http://bugs.jquery.com/ticket/11778
|
2011-10-10 19:34:47 +00:00
|
|
|
setTimeout(function() {
|
|
|
|
panel.html( response );
|
2012-04-03 23:59:08 +00:00
|
|
|
that._trigger( "load", event, eventData );
|
2011-10-10 19:34:47 +00:00
|
|
|
}, 1 );
|
2011-03-26 19:00:39 +00:00
|
|
|
})
|
2011-04-05 15:28:05 +00:00
|
|
|
.complete(function( jqXHR, status ) {
|
2012-05-16 23:22:49 +00:00
|
|
|
// support: jQuery <1.8
|
|
|
|
// http://bugs.jquery.com/ticket/11778
|
2011-10-10 19:34:47 +00:00
|
|
|
setTimeout(function() {
|
|
|
|
if ( status === "abort" ) {
|
2012-04-03 23:59:08 +00:00
|
|
|
that.panels.stop( false, true );
|
2011-10-10 19:34:47 +00:00
|
|
|
}
|
2011-11-18 11:19:32 +00:00
|
|
|
|
2012-05-18 20:11:14 +00:00
|
|
|
tab.removeClass( "ui-tabs-loading" );
|
2011-11-18 11:19:32 +00:00
|
|
|
|
2012-04-03 23:59:08 +00:00
|
|
|
if ( jqXHR === that.xhr ) {
|
|
|
|
delete that.xhr;
|
2011-10-10 19:34:47 +00:00
|
|
|
}
|
2011-11-02 13:35:20 +00:00
|
|
|
}, 1 );
|
2011-03-26 19:00:39 +00:00
|
|
|
});
|
|
|
|
}
|
2011-04-04 21:06:13 +00:00
|
|
|
},
|
2011-03-27 02:14:17 +00:00
|
|
|
|
2011-04-04 21:06:13 +00:00
|
|
|
_getPanelForTab: function( tab ) {
|
|
|
|
var id = $( tab ).attr( "aria-controls" );
|
|
|
|
return this.element.find( this._sanitizeSelector( "#" + id ) );
|
|
|
|
}
|
2008-06-04 02:34:33 +00:00
|
|
|
});
|
|
|
|
|
2011-03-26 19:00:39 +00:00
|
|
|
// DEPRECATED
|
|
|
|
if ( $.uiBackCompat !== false ) {
|
2011-04-28 13:07:54 +00:00
|
|
|
|
2011-05-10 18:04:50 +00:00
|
|
|
// helper method for a lot of the back compat extensions
|
|
|
|
$.ui.tabs.prototype._ui = function( tab, panel ) {
|
|
|
|
return {
|
|
|
|
tab: tab,
|
|
|
|
panel: panel,
|
|
|
|
index: this.anchors.index( tab )
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2011-04-28 13:07:54 +00:00
|
|
|
// url method
|
2012-02-01 21:59:26 +00:00
|
|
|
$.widget( "ui.tabs", $.ui.tabs, {
|
|
|
|
url: function( index, url ) {
|
2011-04-28 13:07:54 +00:00
|
|
|
this.anchors.eq( index ).attr( "href", url );
|
2012-02-01 21:59:26 +00:00
|
|
|
}
|
|
|
|
});
|
2011-04-28 13:07:54 +00:00
|
|
|
|
2011-03-26 19:00:39 +00:00
|
|
|
// ajaxOptions and cache options
|
2012-02-01 21:59:26 +00:00
|
|
|
$.widget( "ui.tabs", $.ui.tabs, {
|
|
|
|
options: {
|
2011-03-26 19:00:39 +00:00
|
|
|
ajaxOptions: null,
|
|
|
|
cache: false
|
2012-02-01 21:59:26 +00:00
|
|
|
},
|
2011-03-26 19:00:39 +00:00
|
|
|
|
2012-02-01 21:59:26 +00:00
|
|
|
_create: function() {
|
|
|
|
this._super();
|
2011-03-26 19:00:39 +00:00
|
|
|
|
2012-04-03 23:59:08 +00:00
|
|
|
var that = this;
|
2011-03-26 19:00:39 +00:00
|
|
|
|
2012-02-01 21:59:26 +00:00
|
|
|
this.element.bind( "tabsbeforeload.tabs", function( event, ui ) {
|
|
|
|
// tab is already cached
|
|
|
|
if ( $.data( ui.tab[ 0 ], "cache.tabs" ) ) {
|
|
|
|
event.preventDefault();
|
|
|
|
return;
|
|
|
|
}
|
2011-03-26 19:00:39 +00:00
|
|
|
|
2012-04-03 23:59:08 +00:00
|
|
|
$.extend( ui.ajaxSettings, that.options.ajaxOptions, {
|
2012-02-01 21:59:26 +00:00
|
|
|
error: function( xhr, s, e ) {
|
|
|
|
try {
|
|
|
|
// Passing index avoid a race condition when this method is
|
|
|
|
// called after the user has selected another tab.
|
|
|
|
// Pass the anchor that initiated this request allows
|
|
|
|
// loadError to manipulate the tab content panel via $(a.hash)
|
2012-04-03 23:59:08 +00:00
|
|
|
that.options.ajaxOptions.error( xhr, s, ui.tab.closest( "li" ).index(), ui.tab[ 0 ] );
|
2011-03-26 19:00:39 +00:00
|
|
|
}
|
2012-02-01 21:59:26 +00:00
|
|
|
catch ( e ) {}
|
|
|
|
}
|
2011-03-26 19:00:39 +00:00
|
|
|
});
|
|
|
|
|
2012-02-01 21:59:26 +00:00
|
|
|
ui.jqXHR.success(function() {
|
2012-04-03 23:59:08 +00:00
|
|
|
if ( that.options.cache ) {
|
2012-02-01 21:59:26 +00:00
|
|
|
$.data( ui.tab[ 0 ], "cache.tabs", true );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
2011-03-26 19:00:39 +00:00
|
|
|
|
2012-02-01 21:59:26 +00:00
|
|
|
_setOption: function( key, value ) {
|
|
|
|
// reset cache if switching from cached to not cached
|
|
|
|
if ( key === "cache" && value === false ) {
|
2011-03-26 19:00:39 +00:00
|
|
|
this.anchors.removeData( "cache.tabs" );
|
|
|
|
}
|
2012-02-01 21:59:26 +00:00
|
|
|
this._super( key, value );
|
|
|
|
},
|
|
|
|
|
|
|
|
_destroy: function() {
|
|
|
|
this.anchors.removeData( "cache.tabs" );
|
|
|
|
this._super();
|
|
|
|
},
|
|
|
|
|
|
|
|
url: function( index, url ){
|
|
|
|
this.anchors.eq( index ).removeData( "cache.tabs" );
|
|
|
|
this._superApply( arguments );
|
|
|
|
}
|
|
|
|
});
|
2011-03-26 19:23:08 +00:00
|
|
|
|
|
|
|
// abort method
|
2012-02-01 21:59:26 +00:00
|
|
|
$.widget( "ui.tabs", $.ui.tabs, {
|
|
|
|
abort: function() {
|
2011-03-26 19:23:08 +00:00
|
|
|
if ( this.xhr ) {
|
|
|
|
this.xhr.abort();
|
|
|
|
}
|
2012-02-01 21:59:26 +00:00
|
|
|
}
|
|
|
|
});
|
2011-03-26 19:48:53 +00:00
|
|
|
|
|
|
|
// spinner
|
2011-05-09 16:52:00 +00:00
|
|
|
$.widget( "ui.tabs", $.ui.tabs, {
|
|
|
|
options: {
|
2011-03-26 19:48:53 +00:00
|
|
|
spinner: "<em>Loading…</em>"
|
2011-05-09 16:52:00 +00:00
|
|
|
},
|
|
|
|
_create: function() {
|
2011-11-18 11:19:32 +00:00
|
|
|
this._super();
|
2011-05-09 16:52:00 +00:00
|
|
|
this._bind({
|
|
|
|
tabsbeforeload: function( event, ui ) {
|
|
|
|
if ( !this.options.spinner ) {
|
|
|
|
return;
|
2011-03-26 19:48:53 +00:00
|
|
|
}
|
2011-11-18 11:19:32 +00:00
|
|
|
|
2011-05-09 16:52:00 +00:00
|
|
|
var span = ui.tab.find( "span" ),
|
|
|
|
html = span.html();
|
|
|
|
span.html( this.options.spinner );
|
|
|
|
ui.jqXHR.complete(function() {
|
|
|
|
span.html( html );
|
|
|
|
});
|
2011-03-26 19:48:53 +00:00
|
|
|
}
|
|
|
|
});
|
2011-05-09 16:52:00 +00:00
|
|
|
}
|
|
|
|
});
|
2011-03-26 20:12:05 +00:00
|
|
|
|
|
|
|
// enable/disable events
|
2012-02-01 21:59:26 +00:00
|
|
|
$.widget( "ui.tabs", $.ui.tabs, {
|
|
|
|
options: {
|
2011-03-26 20:12:05 +00:00
|
|
|
enable: null,
|
|
|
|
disable: null
|
2012-02-01 21:59:26 +00:00
|
|
|
},
|
2011-03-26 20:12:05 +00:00
|
|
|
|
2012-02-01 21:59:26 +00:00
|
|
|
enable: function( index ) {
|
2011-05-03 10:31:12 +00:00
|
|
|
var options = this.options,
|
2011-03-26 20:12:05 +00:00
|
|
|
trigger;
|
|
|
|
|
2011-05-03 10:31:12 +00:00
|
|
|
if ( index && options.disabled === true ||
|
|
|
|
( $.isArray( options.disabled ) && $.inArray( index, options.disabled ) !== -1 ) ) {
|
2011-03-26 20:12:05 +00:00
|
|
|
trigger = true;
|
|
|
|
}
|
|
|
|
|
2012-02-01 21:59:26 +00:00
|
|
|
this._superApply( arguments );
|
2011-03-26 20:12:05 +00:00
|
|
|
|
|
|
|
if ( trigger ) {
|
|
|
|
this._trigger( "enable", null, this._ui( this.anchors[ index ], this.panels[ index ] ) );
|
|
|
|
}
|
2012-02-01 21:59:26 +00:00
|
|
|
},
|
2011-03-26 20:12:05 +00:00
|
|
|
|
2012-02-01 21:59:26 +00:00
|
|
|
disable: function( index ) {
|
2011-05-03 10:31:12 +00:00
|
|
|
var options = this.options,
|
2011-03-26 20:12:05 +00:00
|
|
|
trigger;
|
|
|
|
|
2011-05-03 10:31:12 +00:00
|
|
|
if ( index && options.disabled === false ||
|
|
|
|
( $.isArray( options.disabled ) && $.inArray( index, options.disabled ) === -1 ) ) {
|
2011-03-26 20:12:05 +00:00
|
|
|
trigger = true;
|
|
|
|
}
|
|
|
|
|
2012-02-01 21:59:26 +00:00
|
|
|
this._superApply( arguments );
|
2011-03-26 20:12:05 +00:00
|
|
|
|
|
|
|
if ( trigger ) {
|
|
|
|
this._trigger( "disable", null, this._ui( this.anchors[ index ], this.panels[ index ] ) );
|
|
|
|
}
|
2012-02-01 21:59:26 +00:00
|
|
|
}
|
|
|
|
});
|
2011-03-26 20:29:57 +00:00
|
|
|
|
|
|
|
// add/remove methods and events
|
2012-02-01 21:59:26 +00:00
|
|
|
$.widget( "ui.tabs", $.ui.tabs, {
|
|
|
|
options: {
|
2011-03-26 20:29:57 +00:00
|
|
|
add: null,
|
2011-03-27 19:12:53 +00:00
|
|
|
remove: null,
|
|
|
|
tabTemplate: "<li><a href='#{href}'><span>#{label}</span></a></li>"
|
2012-02-01 21:59:26 +00:00
|
|
|
},
|
2011-03-26 20:29:57 +00:00
|
|
|
|
2012-02-01 21:59:26 +00:00
|
|
|
add: function( url, label, index ) {
|
2011-03-26 20:29:57 +00:00
|
|
|
if ( index === undefined ) {
|
|
|
|
index = this.anchors.length;
|
|
|
|
}
|
|
|
|
|
2012-04-02 23:12:21 +00:00
|
|
|
var doInsertAfter, panel,
|
|
|
|
options = this.options,
|
2011-04-29 01:35:04 +00:00
|
|
|
li = $( options.tabTemplate
|
|
|
|
.replace( /#\{href\}/g, url )
|
|
|
|
.replace( /#\{label\}/g, label ) ),
|
|
|
|
id = !url.indexOf( "#" ) ?
|
|
|
|
url.replace( "#", "" ) :
|
2012-05-18 20:11:14 +00:00
|
|
|
this._tabId( li );
|
2011-03-26 20:29:57 +00:00
|
|
|
|
2012-03-01 12:31:25 +00:00
|
|
|
li.addClass( "ui-state-default ui-corner-top" ).data( "ui-tabs-destroy", true );
|
2012-05-18 20:11:14 +00:00
|
|
|
li.attr( "aria-controls", id );
|
2011-03-26 20:29:57 +00:00
|
|
|
|
2012-04-02 23:12:21 +00:00
|
|
|
doInsertAfter = index >= this.lis.length;
|
2011-05-16 16:30:23 +00:00
|
|
|
|
2011-03-26 20:29:57 +00:00
|
|
|
// try to find an existing element before creating a new one
|
2012-04-02 23:12:21 +00:00
|
|
|
panel = this.element.find( "#" + id );
|
2011-04-29 01:35:04 +00:00
|
|
|
if ( !panel.length ) {
|
|
|
|
panel = this._createPanel( id );
|
2011-05-16 16:30:23 +00:00
|
|
|
if ( doInsertAfter ) {
|
|
|
|
if ( index > 0 ) {
|
|
|
|
panel.insertAfter( this.panels.eq( -1 ) );
|
|
|
|
} else {
|
|
|
|
panel.appendTo( this.element );
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
panel.insertBefore( this.panels[ index ] );
|
|
|
|
}
|
2011-03-26 20:29:57 +00:00
|
|
|
}
|
2011-04-29 01:35:04 +00:00
|
|
|
panel.addClass( "ui-tabs-panel ui-widget-content ui-corner-bottom" ).hide();
|
2011-03-26 20:29:57 +00:00
|
|
|
|
2011-05-16 16:30:23 +00:00
|
|
|
if ( doInsertAfter ) {
|
2011-04-29 01:35:04 +00:00
|
|
|
li.appendTo( this.list );
|
2011-03-26 20:29:57 +00:00
|
|
|
} else {
|
2011-04-29 01:35:04 +00:00
|
|
|
li.insertBefore( this.lis[ index ] );
|
2011-03-26 20:29:57 +00:00
|
|
|
}
|
2011-05-16 16:30:23 +00:00
|
|
|
|
2011-04-29 01:35:04 +00:00
|
|
|
options.disabled = $.map( options.disabled, function( n ) {
|
2011-03-26 20:29:57 +00:00
|
|
|
return n >= index ? ++n : n;
|
|
|
|
});
|
|
|
|
|
2011-03-27 00:37:26 +00:00
|
|
|
this.refresh();
|
2011-04-29 01:35:04 +00:00
|
|
|
if ( this.lis.length === 1 && options.active === false ) {
|
|
|
|
this.option( "active", 0 );
|
|
|
|
}
|
2011-03-26 20:29:57 +00:00
|
|
|
|
|
|
|
this._trigger( "add", null, this._ui( this.anchors[ index ], this.panels[ index ] ) );
|
|
|
|
return this;
|
2012-02-01 21:59:26 +00:00
|
|
|
},
|
2011-03-26 20:29:57 +00:00
|
|
|
|
2012-02-01 21:59:26 +00:00
|
|
|
remove: function( index ) {
|
2011-03-26 20:29:57 +00:00
|
|
|
index = this._getIndex( index );
|
2011-04-29 01:35:04 +00:00
|
|
|
var options = this.options,
|
|
|
|
tab = this.lis.eq( index ).remove(),
|
2012-05-18 20:11:14 +00:00
|
|
|
panel = this._getPanelForTab( tab ).remove();
|
2011-03-26 20:29:57 +00:00
|
|
|
|
|
|
|
// If selected tab was removed focus tab to the right or
|
|
|
|
// in case the last tab was removed the tab to the left.
|
2011-09-06 17:01:01 +00:00
|
|
|
// We check for more than 2 tabs, because if there are only 2,
|
|
|
|
// then when we remove this tab, there will only be one tab left
|
|
|
|
// so we don't need to detect which tab to activate.
|
|
|
|
if ( tab.hasClass( "ui-tabs-active" ) && this.anchors.length > 2 ) {
|
2011-03-29 02:28:59 +00:00
|
|
|
this._activate( index + ( index + 1 < this.anchors.length ? 1 : -1 ) );
|
2011-03-26 20:29:57 +00:00
|
|
|
}
|
|
|
|
|
2011-04-29 01:35:04 +00:00
|
|
|
options.disabled = $.map(
|
|
|
|
$.grep( options.disabled, function( n ) {
|
|
|
|
return n !== index;
|
2011-03-26 20:29:57 +00:00
|
|
|
}),
|
2011-04-29 01:35:04 +00:00
|
|
|
function( n ) {
|
2011-03-26 20:29:57 +00:00
|
|
|
return n >= index ? --n : n;
|
|
|
|
});
|
|
|
|
|
2011-03-27 00:37:26 +00:00
|
|
|
this.refresh();
|
2011-03-26 20:29:57 +00:00
|
|
|
|
2011-04-29 01:35:04 +00:00
|
|
|
this._trigger( "remove", null, this._ui( tab.find( "a" )[ 0 ], panel[ 0 ] ) );
|
2011-03-26 20:29:57 +00:00
|
|
|
return this;
|
2012-02-01 21:59:26 +00:00
|
|
|
}
|
|
|
|
});
|
2011-03-26 20:29:57 +00:00
|
|
|
|
2011-03-26 20:49:14 +00:00
|
|
|
// length method
|
2012-02-01 21:59:26 +00:00
|
|
|
$.widget( "ui.tabs", $.ui.tabs, {
|
|
|
|
length: function() {
|
2011-03-26 20:49:14 +00:00
|
|
|
return this.anchors.length;
|
2012-02-01 21:59:26 +00:00
|
|
|
}
|
|
|
|
});
|
2011-03-27 02:14:17 +00:00
|
|
|
|
2011-04-06 01:39:02 +00:00
|
|
|
// panel ids (idPrefix option + title attribute)
|
2012-02-01 21:59:26 +00:00
|
|
|
$.widget( "ui.tabs", $.ui.tabs, {
|
|
|
|
options: {
|
2011-03-27 19:12:53 +00:00
|
|
|
idPrefix: "ui-tabs-"
|
2012-02-01 21:59:26 +00:00
|
|
|
},
|
2011-03-27 19:12:53 +00:00
|
|
|
|
2012-05-18 20:11:14 +00:00
|
|
|
_tabId: function( tab ) {
|
|
|
|
var a = tab.is( "li" ) ? tab.find( "a[href]" ) : tab;
|
|
|
|
a = a[0];
|
|
|
|
return $( a ).closest( "li" ).attr( "aria-controls" ) ||
|
2012-04-04 08:52:41 +00:00
|
|
|
a.title && a.title.replace( /\s/g, "_" ).replace( /[^\w\u00c0-\uFFFF\-]/g, "" ) ||
|
2011-03-27 19:12:53 +00:00
|
|
|
this.options.idPrefix + getNextTabId();
|
2012-02-01 21:59:26 +00:00
|
|
|
}
|
|
|
|
});
|
2011-03-27 19:12:53 +00:00
|
|
|
|
2011-04-06 01:39:02 +00:00
|
|
|
// _createPanel method
|
2012-02-01 21:59:26 +00:00
|
|
|
$.widget( "ui.tabs", $.ui.tabs, {
|
|
|
|
options: {
|
2011-03-27 19:12:53 +00:00
|
|
|
panelTemplate: "<div></div>"
|
2012-02-01 21:59:26 +00:00
|
|
|
},
|
2011-03-27 19:12:53 +00:00
|
|
|
|
2012-02-01 21:59:26 +00:00
|
|
|
_createPanel: function( id ) {
|
2011-03-27 19:12:53 +00:00
|
|
|
return $( this.options.panelTemplate )
|
2012-02-01 21:59:26 +00:00
|
|
|
.attr( "id", id )
|
|
|
|
.addClass( "ui-tabs-panel ui-widget-content ui-corner-bottom" )
|
2012-03-01 12:31:25 +00:00
|
|
|
.data( "ui-tabs-destroy", true );
|
2012-02-01 21:59:26 +00:00
|
|
|
}
|
|
|
|
});
|
2011-03-27 20:37:43 +00:00
|
|
|
|
|
|
|
// selected option
|
2012-02-01 21:59:26 +00:00
|
|
|
$.widget( "ui.tabs", $.ui.tabs, {
|
|
|
|
_create: function() {
|
2011-03-27 20:37:43 +00:00
|
|
|
var options = this.options;
|
2011-04-05 20:53:52 +00:00
|
|
|
if ( options.active === null && options.selected !== undefined ) {
|
|
|
|
options.active = options.selected === -1 ? false : options.selected;
|
2011-03-27 20:37:43 +00:00
|
|
|
}
|
2012-02-01 21:59:26 +00:00
|
|
|
this._super();
|
2011-03-27 20:37:43 +00:00
|
|
|
options.selected = options.active;
|
2011-04-05 20:53:52 +00:00
|
|
|
if ( options.selected === false ) {
|
|
|
|
options.selected = -1;
|
|
|
|
}
|
2012-02-01 21:59:26 +00:00
|
|
|
},
|
2011-03-27 20:37:43 +00:00
|
|
|
|
2012-02-01 21:59:26 +00:00
|
|
|
_setOption: function( key, value ) {
|
2011-05-03 11:14:19 +00:00
|
|
|
if ( key !== "selected" ) {
|
2012-02-01 21:59:26 +00:00
|
|
|
return this._super( key, value );
|
2011-03-27 20:37:43 +00:00
|
|
|
}
|
2011-05-03 11:14:19 +00:00
|
|
|
|
|
|
|
var options = this.options;
|
2012-02-01 21:59:26 +00:00
|
|
|
this._super( "active", value === -1 ? false : value );
|
2011-05-03 11:14:19 +00:00
|
|
|
options.selected = options.active;
|
|
|
|
if ( options.selected === false ) {
|
|
|
|
options.selected = -1;
|
2011-03-27 20:37:43 +00:00
|
|
|
}
|
2012-02-01 21:59:26 +00:00
|
|
|
},
|
2011-03-27 20:37:43 +00:00
|
|
|
|
2012-02-01 21:59:26 +00:00
|
|
|
_eventHandler: function( event ) {
|
|
|
|
this._superApply( arguments );
|
2011-04-05 20:53:52 +00:00
|
|
|
this.options.selected = this.options.active;
|
|
|
|
if ( this.options.selected === false ) {
|
|
|
|
this.options.selected = -1;
|
|
|
|
}
|
2012-02-01 21:59:26 +00:00
|
|
|
}
|
|
|
|
});
|
2011-03-27 20:55:05 +00:00
|
|
|
|
2011-03-27 21:02:58 +00:00
|
|
|
// show and select event
|
2012-02-01 21:59:26 +00:00
|
|
|
$.widget( "ui.tabs", $.ui.tabs, {
|
|
|
|
options: {
|
2011-03-27 21:02:58 +00:00
|
|
|
show: null,
|
|
|
|
select: null
|
2012-02-01 21:59:26 +00:00
|
|
|
},
|
|
|
|
_create: function() {
|
|
|
|
this._super();
|
2011-05-10 17:56:59 +00:00
|
|
|
if ( this.options.active !== false ) {
|
|
|
|
this._trigger( "show", null, this._ui(
|
2012-05-18 20:11:14 +00:00
|
|
|
this.active.find( ".ui-tabs-anchor" )[ 0 ],
|
|
|
|
this._getPanelForTab( this.active )[ 0 ] ) );
|
2011-05-10 17:56:59 +00:00
|
|
|
}
|
2012-02-01 21:59:26 +00:00
|
|
|
},
|
|
|
|
_trigger: function( type, event, data ) {
|
|
|
|
var ret = this._superApply( arguments );
|
2011-03-27 20:55:05 +00:00
|
|
|
if ( !ret ) {
|
|
|
|
return false;
|
|
|
|
}
|
2011-05-10 18:04:50 +00:00
|
|
|
if ( type === "beforeActivate" && data.newTab.length ) {
|
2012-02-01 21:59:26 +00:00
|
|
|
ret = this._super( "select", event, {
|
2012-05-18 20:11:14 +00:00
|
|
|
tab: data.newTab.find( ".ui-tabs-anchor" )[ 0],
|
2011-04-04 15:22:32 +00:00
|
|
|
panel: data.newPanel[ 0 ],
|
|
|
|
index: data.newTab.closest( "li" ).index()
|
|
|
|
});
|
2011-05-10 17:56:59 +00:00
|
|
|
} else if ( type === "activate" && data.newTab.length ) {
|
2012-02-01 21:59:26 +00:00
|
|
|
ret = this._super( "show", event, {
|
2012-05-18 20:11:14 +00:00
|
|
|
tab: data.newTab.find( ".ui-tabs-anchor" )[ 0 ],
|
2011-05-10 17:56:59 +00:00
|
|
|
panel: data.newPanel[ 0 ],
|
|
|
|
index: data.newTab.closest( "li" ).index()
|
|
|
|
});
|
2011-03-27 20:55:05 +00:00
|
|
|
}
|
2012-02-01 21:59:26 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
});
|
2011-03-29 02:28:59 +00:00
|
|
|
|
|
|
|
// select method
|
2012-02-01 21:59:26 +00:00
|
|
|
$.widget( "ui.tabs", $.ui.tabs, {
|
|
|
|
select: function( index ) {
|
2011-03-29 02:28:59 +00:00
|
|
|
index = this._getIndex( index );
|
2011-05-03 11:48:08 +00:00
|
|
|
if ( index === -1 ) {
|
|
|
|
if ( this.options.collapsible && this.options.selected !== -1 ) {
|
2011-03-29 02:28:59 +00:00
|
|
|
index = this.options.selected;
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.anchors.eq( index ).trigger( this.options.event + ".tabs" );
|
2012-02-01 21:59:26 +00:00
|
|
|
}
|
|
|
|
});
|
2011-03-29 02:46:31 +00:00
|
|
|
|
|
|
|
// cookie option
|
2012-04-02 23:12:21 +00:00
|
|
|
(function() {
|
|
|
|
|
2011-05-11 19:01:57 +00:00
|
|
|
var listId = 0;
|
2012-02-13 00:58:56 +00:00
|
|
|
|
2011-05-10 13:15:08 +00:00
|
|
|
$.widget( "ui.tabs", $.ui.tabs, {
|
|
|
|
options: {
|
2011-03-29 02:46:31 +00:00
|
|
|
cookie: null // e.g. { expires: 7, path: '/', domain: 'jquery.com', secure: true }
|
2011-05-10 13:15:08 +00:00
|
|
|
},
|
|
|
|
_create: function() {
|
|
|
|
var options = this.options,
|
|
|
|
active;
|
|
|
|
if ( options.active == null && options.cookie ) {
|
|
|
|
active = parseInt( this._cookie(), 10 );
|
|
|
|
if ( active === -1 ) {
|
|
|
|
active = false;
|
2011-03-29 02:46:31 +00:00
|
|
|
}
|
2011-05-10 13:15:08 +00:00
|
|
|
options.active = active;
|
2011-03-29 02:46:31 +00:00
|
|
|
}
|
2011-11-18 11:19:32 +00:00
|
|
|
this._super();
|
2011-05-10 13:15:08 +00:00
|
|
|
},
|
|
|
|
_cookie: function( active ) {
|
|
|
|
var cookie = [ this.cookie ||
|
2012-04-02 19:55:50 +00:00
|
|
|
( this.cookie = this.options.cookie.name || "ui-tabs-" + (++listId) ) ];
|
2011-05-10 13:15:08 +00:00
|
|
|
if ( arguments.length ) {
|
|
|
|
cookie.push( active === false ? -1 : active );
|
|
|
|
cookie.push( this.options.cookie );
|
|
|
|
}
|
|
|
|
return $.cookie.apply( null, cookie );
|
|
|
|
},
|
|
|
|
_refresh: function() {
|
2011-11-18 11:19:32 +00:00
|
|
|
this._super();
|
2011-03-29 02:46:31 +00:00
|
|
|
if ( this.options.cookie ) {
|
|
|
|
this._cookie( this.options.active, this.options.cookie );
|
|
|
|
}
|
2011-05-10 13:15:08 +00:00
|
|
|
},
|
|
|
|
_eventHandler: function( event ) {
|
2011-11-18 11:19:32 +00:00
|
|
|
this._superApply( arguments );
|
2011-03-29 02:46:31 +00:00
|
|
|
if ( this.options.cookie ) {
|
|
|
|
this._cookie( this.options.active, this.options.cookie );
|
|
|
|
}
|
2011-05-10 13:15:08 +00:00
|
|
|
},
|
|
|
|
_destroy: function() {
|
2011-11-18 11:19:32 +00:00
|
|
|
this._super();
|
2011-03-29 02:46:31 +00:00
|
|
|
if ( this.options.cookie ) {
|
|
|
|
this._cookie( null, this.options.cookie );
|
|
|
|
}
|
2011-05-10 13:15:08 +00:00
|
|
|
}
|
|
|
|
});
|
2011-05-17 19:46:41 +00:00
|
|
|
|
2012-04-02 23:12:21 +00:00
|
|
|
})();
|
|
|
|
|
2011-05-17 19:46:41 +00:00
|
|
|
// load event
|
|
|
|
$.widget( "ui.tabs", $.ui.tabs, {
|
|
|
|
_trigger: function( type, event, data ) {
|
|
|
|
var _data = $.extend( {}, data );
|
|
|
|
if ( type === "load" ) {
|
|
|
|
_data.panel = _data.panel[ 0 ];
|
2012-05-18 20:11:14 +00:00
|
|
|
_data.tab = _data.tab.find( ".ui-tabs-anchor" )[ 0 ];
|
2011-05-17 19:46:41 +00:00
|
|
|
}
|
2011-11-18 11:19:32 +00:00
|
|
|
return this._super( type, event, _data );
|
2011-05-17 19:46:41 +00:00
|
|
|
}
|
|
|
|
});
|
2012-05-14 18:40:06 +00:00
|
|
|
|
|
|
|
// fx option
|
|
|
|
// The new animation options (show, hide) conflict with the old show callback.
|
|
|
|
// The old fx option wins over show/hide anyway (always favor back-compat).
|
|
|
|
// If a user wants to use the new animation API, they must give up the old API.
|
|
|
|
$.widget( "ui.tabs", $.ui.tabs, {
|
|
|
|
options: {
|
|
|
|
fx: null // e.g. { height: "toggle", opacity: "toggle", duration: 200 }
|
|
|
|
},
|
|
|
|
|
|
|
|
_getFx: function() {
|
|
|
|
var hide, show,
|
|
|
|
fx = this.options.fx;
|
|
|
|
|
|
|
|
if ( fx ) {
|
|
|
|
if ( $.isArray( fx ) ) {
|
|
|
|
hide = fx[ 0 ];
|
|
|
|
show = fx[ 1 ];
|
|
|
|
} else {
|
|
|
|
hide = show = fx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return fx ? { show: show, hide: hide } : null;
|
|
|
|
},
|
|
|
|
|
|
|
|
_toggle: function( event, eventData ) {
|
|
|
|
var that = this,
|
|
|
|
toShow = eventData.newPanel,
|
|
|
|
toHide = eventData.oldPanel,
|
|
|
|
fx = this._getFx();
|
|
|
|
|
|
|
|
if ( !fx ) {
|
|
|
|
return this._super( event, eventData );
|
|
|
|
}
|
|
|
|
|
|
|
|
that.running = true;
|
|
|
|
|
|
|
|
function complete() {
|
|
|
|
that.running = false;
|
|
|
|
that._trigger( "activate", event, eventData );
|
|
|
|
}
|
|
|
|
|
|
|
|
function show() {
|
|
|
|
eventData.newTab.closest( "li" ).addClass( "ui-tabs-active ui-state-active" );
|
|
|
|
|
|
|
|
if ( toShow.length && fx.show ) {
|
|
|
|
toShow
|
|
|
|
.animate( fx.show, fx.show.duration, function() {
|
|
|
|
complete();
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
toShow.show();
|
|
|
|
complete();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// start out by hiding, then showing, then completing
|
|
|
|
if ( toHide.length && fx.hide ) {
|
|
|
|
toHide.animate( fx.hide, fx.hide.duration, function() {
|
|
|
|
eventData.oldTab.closest( "li" ).removeClass( "ui-tabs-active ui-state-active" );
|
|
|
|
show();
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
eventData.oldTab.closest( "li" ).removeClass( "ui-tabs-active ui-state-active" );
|
|
|
|
toHide.hide();
|
|
|
|
show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2011-03-26 19:00:39 +00:00
|
|
|
}
|
|
|
|
|
2010-07-28 15:28:14 +00:00
|
|
|
})( jQuery );
|