2012-02-27 00:49:51 +00:00
|
|
|
/*!
|
2008-09-04 22:03:30 +00:00
|
|
|
* jQuery UI Accordion @VERSION
|
2012-07-04 13:08:08 +00:00
|
|
|
* http://jqueryui.com
|
2008-11-20 04:10:34 +00:00
|
|
|
*
|
2014-12-21 18:27:43 +00:00
|
|
|
* Copyright jQuery Foundation and other contributors
|
2012-08-09 14:13:24 +00:00
|
|
|
* Released under the MIT license.
|
2010-07-09 13:01:04 +00:00
|
|
|
* http://jquery.org/license
|
2008-06-04 02:34:33 +00:00
|
|
|
*/
|
2014-10-30 19:55:08 +00:00
|
|
|
|
|
|
|
//>>label: Accordion
|
|
|
|
//>>group: Widgets
|
2016-03-31 13:13:28 +00:00
|
|
|
// jscs:disable maximumLineLength
|
2014-10-30 19:55:08 +00:00
|
|
|
//>>description: Displays collapsible content panels for presenting information in a limited amount of space.
|
2016-03-31 13:13:28 +00:00
|
|
|
// jscs:enable maximumLineLength
|
2014-10-30 19:55:08 +00:00
|
|
|
//>>docs: http://api.jqueryui.com/accordion/
|
|
|
|
//>>demos: http://jqueryui.com/accordion/
|
2015-10-21 23:08:44 +00:00
|
|
|
//>>css.structure: ../../themes/base/core.css
|
|
|
|
//>>css.structure: ../../themes/base/accordion.css
|
|
|
|
//>>css.theme: ../../themes/base/theme.css
|
2014-10-30 19:55:08 +00:00
|
|
|
|
2015-03-14 11:19:32 +00:00
|
|
|
( function( factory ) {
|
2013-07-12 16:40:48 +00:00
|
|
|
if ( typeof define === "function" && define.amd ) {
|
|
|
|
|
|
|
|
// AMD. Register as an anonymous module.
|
2015-03-14 11:19:32 +00:00
|
|
|
define( [
|
2013-07-12 16:40:48 +00:00
|
|
|
"jquery",
|
2015-07-15 01:54:33 +00:00
|
|
|
"../version",
|
|
|
|
"../keycode",
|
|
|
|
"../unique-id",
|
|
|
|
"../widget"
|
2013-07-12 16:40:48 +00:00
|
|
|
], factory );
|
|
|
|
} else {
|
|
|
|
|
|
|
|
// Browser globals
|
|
|
|
factory( jQuery );
|
|
|
|
}
|
2015-03-14 11:19:32 +00:00
|
|
|
}( function( $ ) {
|
2012-04-23 02:15:29 +00:00
|
|
|
|
2013-07-12 16:40:48 +00:00
|
|
|
return $.widget( "ui.accordion", {
|
2011-05-28 19:39:55 +00:00
|
|
|
version: "@VERSION",
|
2010-01-07 03:19:50 +00:00
|
|
|
options: {
|
|
|
|
active: 0,
|
2012-02-16 21:51:46 +00:00
|
|
|
animate: {},
|
2014-12-03 16:23:19 +00:00
|
|
|
classes: {
|
|
|
|
"ui-accordion-header": "ui-corner-top",
|
|
|
|
"ui-accordion-header-collapsed": "ui-corner-all",
|
|
|
|
"ui-accordion-content": "ui-corner-bottom"
|
|
|
|
},
|
2010-01-07 03:19:50 +00:00
|
|
|
collapsible: false,
|
|
|
|
event: "click",
|
2020-01-22 15:44:34 +00:00
|
|
|
header: function( elem ) {
|
|
|
|
return elem.find( "> li > :first-child" ).add( elem.find( "> :not(li)" ).even() );
|
|
|
|
},
|
2011-01-24 19:38:23 +00:00
|
|
|
heightStyle: "auto",
|
2010-01-07 03:19:50 +00:00
|
|
|
icons: {
|
2011-01-24 20:45:29 +00:00
|
|
|
activeHeader: "ui-icon-triangle-1-s",
|
|
|
|
header: "ui-icon-triangle-1-e"
|
2011-04-25 12:10:39 +00:00
|
|
|
},
|
|
|
|
|
2015-08-21 04:12:07 +00:00
|
|
|
// Callbacks
|
2011-04-25 12:10:39 +00:00
|
|
|
activate: null,
|
|
|
|
beforeActivate: null
|
2010-01-07 03:19:50 +00:00
|
|
|
},
|
2010-07-22 23:10:14 +00:00
|
|
|
|
2013-09-17 13:23:52 +00:00
|
|
|
hideProps: {
|
|
|
|
borderTopWidth: "hide",
|
|
|
|
borderBottomWidth: "hide",
|
|
|
|
paddingTop: "hide",
|
|
|
|
paddingBottom: "hide",
|
|
|
|
height: "hide"
|
|
|
|
},
|
|
|
|
|
|
|
|
showProps: {
|
|
|
|
borderTopWidth: "show",
|
|
|
|
borderBottomWidth: "show",
|
|
|
|
paddingTop: "show",
|
|
|
|
paddingBottom: "show",
|
|
|
|
height: "show"
|
|
|
|
},
|
|
|
|
|
2010-01-15 18:58:20 +00:00
|
|
|
_create: function() {
|
2012-11-12 02:37:56 +00:00
|
|
|
var options = this.options;
|
2014-12-03 16:23:19 +00:00
|
|
|
|
2012-02-16 21:51:46 +00:00
|
|
|
this.prevShow = this.prevHide = $();
|
2014-12-03 16:23:19 +00:00
|
|
|
this._addClass( "ui-accordion", "ui-widget ui-helper-reset" );
|
|
|
|
this.element.attr( "role", "tablist" );
|
2009-01-19 13:50:51 +00:00
|
|
|
|
2015-08-21 04:12:07 +00:00
|
|
|
// Don't allow collapsible: false and active: false / null
|
2015-03-14 11:19:32 +00:00
|
|
|
if ( !options.collapsible && ( options.active === false || options.active == null ) ) {
|
2011-02-03 14:54:11 +00:00
|
|
|
options.active = 0;
|
|
|
|
}
|
2012-11-12 02:37:56 +00:00
|
|
|
|
|
|
|
this._processPanels();
|
2015-08-24 13:32:13 +00:00
|
|
|
|
2011-02-03 14:59:05 +00:00
|
|
|
// handle negative values
|
|
|
|
if ( options.active < 0 ) {
|
|
|
|
options.active += this.headers.length;
|
|
|
|
}
|
2012-11-12 02:37:56 +00:00
|
|
|
this._refresh();
|
2008-06-04 02:34:33 +00:00
|
|
|
},
|
2010-07-22 23:10:14 +00:00
|
|
|
|
2012-01-31 16:46:31 +00:00
|
|
|
_getCreateEventData: function() {
|
|
|
|
return {
|
|
|
|
header: this.active,
|
2013-03-15 10:45:38 +00:00
|
|
|
panel: !this.active.length ? $() : this.active.next()
|
2012-01-31 16:46:31 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2009-05-11 11:43:48 +00:00
|
|
|
_createIcons: function() {
|
2014-12-03 16:23:19 +00:00
|
|
|
var icon, children,
|
|
|
|
icons = this.options.icons;
|
|
|
|
|
2011-01-14 00:23:55 +00:00
|
|
|
if ( icons ) {
|
2014-12-03 16:23:19 +00:00
|
|
|
icon = $( "<span>" );
|
|
|
|
this._addClass( icon, "ui-accordion-header-icon", "ui-icon " + icons.header );
|
|
|
|
icon.prependTo( this.headers );
|
|
|
|
children = this.active.children( ".ui-accordion-header-icon" );
|
|
|
|
this._removeClass( children, icons.header )
|
|
|
|
._addClass( children, null, icons.activeHeader )
|
|
|
|
._addClass( this.headers, "ui-accordion-icons" );
|
2009-05-11 11:43:48 +00:00
|
|
|
}
|
|
|
|
},
|
2010-07-22 23:10:14 +00:00
|
|
|
|
2009-05-11 11:43:48 +00:00
|
|
|
_destroyIcons: function() {
|
2014-12-03 16:23:19 +00:00
|
|
|
this._removeClass( this.headers, "ui-accordion-icons" );
|
|
|
|
this.headers.children( ".ui-accordion-header-icon" ).remove();
|
2009-05-11 11:43:48 +00:00
|
|
|
},
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2011-01-14 22:11:22 +00:00
|
|
|
_destroy: function() {
|
2012-04-25 12:39:35 +00:00
|
|
|
var contents;
|
2012-03-27 14:19:35 +00:00
|
|
|
|
2015-08-21 04:12:07 +00:00
|
|
|
// Clean up main element
|
2014-12-03 16:23:19 +00:00
|
|
|
this.element.removeAttr( "role" );
|
2009-01-19 13:50:51 +00:00
|
|
|
|
2015-08-21 04:12:07 +00:00
|
|
|
// Clean up headers
|
2009-01-19 13:50:51 +00:00
|
|
|
this.headers
|
2015-03-18 00:22:49 +00:00
|
|
|
.removeAttr( "role aria-expanded aria-selected aria-controls tabIndex" )
|
2013-09-17 13:23:52 +00:00
|
|
|
.removeUniqueId();
|
|
|
|
|
2009-05-11 11:43:48 +00:00
|
|
|
this._destroyIcons();
|
2011-02-03 02:33:57 +00:00
|
|
|
|
2015-08-21 04:12:07 +00:00
|
|
|
// Clean up content panels
|
2012-04-02 23:12:21 +00:00
|
|
|
contents = this.headers.next()
|
2010-07-22 23:10:14 +00:00
|
|
|
.css( "display", "" )
|
2015-03-18 00:22:49 +00:00
|
|
|
.removeAttr( "role aria-hidden aria-labelledby" )
|
2013-09-17 13:23:52 +00:00
|
|
|
.removeUniqueId();
|
|
|
|
|
2011-02-03 16:04:22 +00:00
|
|
|
if ( this.options.heightStyle !== "content" ) {
|
2010-07-22 23:10:14 +00:00
|
|
|
contents.css( "height", "" );
|
2009-01-30 16:49:40 +00:00
|
|
|
}
|
2008-11-21 04:58:53 +00:00
|
|
|
},
|
2010-07-22 23:10:14 +00:00
|
|
|
|
|
|
|
_setOption: function( key, value ) {
|
2011-02-03 02:33:57 +00:00
|
|
|
if ( key === "active" ) {
|
2015-08-24 13:32:13 +00:00
|
|
|
|
2011-01-12 02:24:41 +00:00
|
|
|
// _activate() will handle invalid values and update this.options
|
2011-01-12 01:53:31 +00:00
|
|
|
this._activate( value );
|
2011-01-12 02:24:41 +00:00
|
|
|
return;
|
2009-08-11 00:45:01 +00:00
|
|
|
}
|
2011-02-03 02:33:57 +00:00
|
|
|
|
2011-07-13 00:50:24 +00:00
|
|
|
if ( key === "event" ) {
|
|
|
|
if ( this.options.event ) {
|
2012-06-14 16:33:16 +00:00
|
|
|
this._off( this.headers, this.options.event );
|
2011-07-13 00:50:24 +00:00
|
|
|
}
|
|
|
|
this._setupEvents( value );
|
|
|
|
}
|
|
|
|
|
2011-11-18 11:19:32 +00:00
|
|
|
this._super( key, value );
|
2011-02-03 02:33:57 +00:00
|
|
|
|
2015-08-21 04:12:07 +00:00
|
|
|
// Setting collapsible: false while collapsed; open first panel
|
2011-02-03 14:54:11 +00:00
|
|
|
if ( key === "collapsible" && !value && this.options.active === false ) {
|
|
|
|
this._activate( 0 );
|
|
|
|
}
|
|
|
|
|
2011-02-03 02:33:57 +00:00
|
|
|
if ( key === "icons" ) {
|
2009-05-11 11:43:48 +00:00
|
|
|
this._destroyIcons();
|
2010-07-22 23:10:14 +00:00
|
|
|
if ( value ) {
|
2009-05-11 11:43:48 +00:00
|
|
|
this._createIcons();
|
|
|
|
}
|
|
|
|
}
|
2015-09-21 10:29:46 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
_setOptionDisabled: function( value ) {
|
|
|
|
this._super( value );
|
|
|
|
|
|
|
|
this.element.attr( "aria-disabled", value );
|
2011-02-03 14:54:11 +00:00
|
|
|
|
2014-12-03 16:23:19 +00:00
|
|
|
// Support: IE8 Only
|
|
|
|
// #5332 / #6059 - opacity doesn't cascade to positioned elements in IE
|
2010-07-14 15:00:28 +00:00
|
|
|
// so we need to add the disabled class to the headers and panels
|
2015-09-21 10:29:46 +00:00
|
|
|
this._toggleClass( null, "ui-state-disabled", !!value );
|
|
|
|
this._toggleClass( this.headers.add( this.headers.next() ), null, "ui-state-disabled",
|
|
|
|
!!value );
|
2009-02-02 02:11:32 +00:00
|
|
|
},
|
2008-11-21 04:58:53 +00:00
|
|
|
|
2010-07-22 23:10:14 +00:00
|
|
|
_keydown: function( event ) {
|
2012-03-07 18:28:42 +00:00
|
|
|
if ( event.altKey || event.ctrlKey ) {
|
2008-11-13 15:51:09 +00:00
|
|
|
return;
|
2010-07-22 23:10:14 +00:00
|
|
|
}
|
2008-11-13 15:51:09 +00:00
|
|
|
|
2010-07-27 21:23:00 +00:00
|
|
|
var keyCode = $.ui.keyCode,
|
|
|
|
length = this.headers.length,
|
|
|
|
currentIndex = this.headers.index( event.target ),
|
2010-07-22 23:10:14 +00:00
|
|
|
toFocus = false;
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2010-07-22 23:10:14 +00:00
|
|
|
switch ( event.keyCode ) {
|
2015-03-14 11:19:32 +00:00
|
|
|
case keyCode.RIGHT:
|
|
|
|
case keyCode.DOWN:
|
|
|
|
toFocus = this.headers[ ( currentIndex + 1 ) % length ];
|
|
|
|
break;
|
|
|
|
case keyCode.LEFT:
|
|
|
|
case keyCode.UP:
|
|
|
|
toFocus = this.headers[ ( currentIndex - 1 + length ) % length ];
|
|
|
|
break;
|
|
|
|
case keyCode.SPACE:
|
|
|
|
case keyCode.ENTER:
|
|
|
|
this._eventHandler( event );
|
|
|
|
break;
|
|
|
|
case keyCode.HOME:
|
|
|
|
toFocus = this.headers[ 0 ];
|
|
|
|
break;
|
|
|
|
case keyCode.END:
|
|
|
|
toFocus = this.headers[ length - 1 ];
|
|
|
|
break;
|
2008-11-13 15:51:09 +00:00
|
|
|
}
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2010-07-22 23:10:14 +00:00
|
|
|
if ( toFocus ) {
|
|
|
|
$( event.target ).attr( "tabIndex", -1 );
|
|
|
|
$( toFocus ).attr( "tabIndex", 0 );
|
2015-05-14 01:52:09 +00:00
|
|
|
$( toFocus ).trigger( "focus" );
|
2011-01-13 21:48:56 +00:00
|
|
|
event.preventDefault();
|
2008-11-13 15:51:09 +00:00
|
|
|
}
|
|
|
|
},
|
2008-12-31 08:22:11 +00:00
|
|
|
|
2013-12-07 17:00:07 +00:00
|
|
|
_panelKeyDown: function( event ) {
|
2012-03-27 14:19:35 +00:00
|
|
|
if ( event.keyCode === $.ui.keyCode.UP && event.ctrlKey ) {
|
2015-05-14 01:52:09 +00:00
|
|
|
$( event.currentTarget ).prev().trigger( "focus" );
|
2012-03-27 14:19:35 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2011-01-14 17:18:33 +00:00
|
|
|
refresh: function() {
|
2012-11-12 02:37:56 +00:00
|
|
|
var options = this.options;
|
|
|
|
this._processPanels();
|
|
|
|
|
2015-08-21 04:12:07 +00:00
|
|
|
// Was collapsed or no panel
|
2016-03-31 03:43:59 +00:00
|
|
|
if ( ( options.active === false && options.collapsible === true ) ||
|
|
|
|
!this.headers.length ) {
|
2012-11-12 02:37:56 +00:00
|
|
|
options.active = false;
|
|
|
|
this.active = $();
|
2015-08-24 13:32:13 +00:00
|
|
|
|
2012-11-12 02:37:56 +00:00
|
|
|
// active false only when collapsible is true
|
2013-03-27 19:23:59 +00:00
|
|
|
} else if ( options.active === false ) {
|
2012-11-12 02:37:56 +00:00
|
|
|
this._activate( 0 );
|
2015-08-24 13:32:13 +00:00
|
|
|
|
2012-11-12 02:37:56 +00:00
|
|
|
// was active, but active panel is gone
|
|
|
|
} else if ( this.active.length && !$.contains( this.element[ 0 ], this.active[ 0 ] ) ) {
|
2015-08-24 13:32:13 +00:00
|
|
|
|
2012-11-12 02:37:56 +00:00
|
|
|
// all remaining panel are disabled
|
2015-03-14 11:19:32 +00:00
|
|
|
if ( this.headers.length === this.headers.find( ".ui-state-disabled" ).length ) {
|
2012-11-12 02:37:56 +00:00
|
|
|
options.active = false;
|
|
|
|
this.active = $();
|
2015-08-24 13:32:13 +00:00
|
|
|
|
2012-11-12 02:37:56 +00:00
|
|
|
// activate previous panel
|
|
|
|
} else {
|
|
|
|
this._activate( Math.max( 0, options.active - 1 ) );
|
|
|
|
}
|
2015-08-24 13:32:13 +00:00
|
|
|
|
2012-11-12 02:37:56 +00:00
|
|
|
// was active, active panel still exists
|
|
|
|
} else {
|
2015-08-24 13:32:13 +00:00
|
|
|
|
2012-11-12 02:37:56 +00:00
|
|
|
// make sure active index is correct
|
|
|
|
options.active = this.headers.index( this.active );
|
|
|
|
}
|
|
|
|
|
|
|
|
this._destroyIcons();
|
|
|
|
|
|
|
|
this._refresh();
|
|
|
|
},
|
|
|
|
|
|
|
|
_processPanels: function() {
|
2014-08-20 20:04:54 +00:00
|
|
|
var prevHeaders = this.headers,
|
|
|
|
prevPanels = this.panels;
|
|
|
|
|
2020-01-22 15:44:34 +00:00
|
|
|
if ( typeof this.options.header === "function" ) {
|
|
|
|
this.headers = this.options.header( this.element );
|
|
|
|
} else {
|
|
|
|
this.headers = this.element.find( this.options.header );
|
|
|
|
}
|
2014-12-03 16:23:19 +00:00
|
|
|
this._addClass( this.headers, "ui-accordion-header ui-accordion-header-collapsed",
|
|
|
|
"ui-state-default" );
|
2012-11-12 02:37:56 +00:00
|
|
|
|
2014-12-03 16:23:19 +00:00
|
|
|
this.panels = this.headers.next().filter( ":not(.ui-accordion-content-active)" ).hide();
|
|
|
|
this._addClass( this.panels, "ui-accordion-content", "ui-helper-reset ui-widget-content" );
|
2014-08-20 20:04:54 +00:00
|
|
|
|
|
|
|
// Avoid memory leaks (#10056)
|
|
|
|
if ( prevPanels ) {
|
|
|
|
this._off( prevHeaders.not( this.headers ) );
|
|
|
|
this._off( prevPanels.not( this.panels ) );
|
|
|
|
}
|
2012-11-12 02:37:56 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
_refresh: function() {
|
2012-10-26 18:32:28 +00:00
|
|
|
var maxHeight,
|
2012-11-12 02:37:56 +00:00
|
|
|
options = this.options,
|
|
|
|
heightStyle = options.heightStyle,
|
2013-09-17 13:23:52 +00:00
|
|
|
parent = this.element.parent();
|
2012-11-12 02:37:56 +00:00
|
|
|
|
2014-12-03 16:23:19 +00:00
|
|
|
this.active = this._findActive( options.active );
|
|
|
|
this._addClass( this.active, "ui-accordion-header-active", "ui-state-active" )
|
|
|
|
._removeClass( this.active, "ui-accordion-header-collapsed" );
|
|
|
|
this._addClass( this.active.next(), "ui-accordion-content-active" );
|
|
|
|
this.active.next().show();
|
2012-11-12 02:37:56 +00:00
|
|
|
|
|
|
|
this.headers
|
|
|
|
.attr( "role", "tab" )
|
2015-03-14 11:19:32 +00:00
|
|
|
.each( function() {
|
2012-11-12 02:37:56 +00:00
|
|
|
var header = $( this ),
|
2013-09-17 13:23:52 +00:00
|
|
|
headerId = header.uniqueId().attr( "id" ),
|
2012-11-12 02:37:56 +00:00
|
|
|
panel = header.next(),
|
2013-09-17 13:23:52 +00:00
|
|
|
panelId = panel.uniqueId().attr( "id" );
|
2012-11-12 02:37:56 +00:00
|
|
|
header.attr( "aria-controls", panelId );
|
|
|
|
panel.attr( "aria-labelledby", headerId );
|
2015-03-14 11:19:32 +00:00
|
|
|
} )
|
2012-11-12 02:37:56 +00:00
|
|
|
.next()
|
|
|
|
.attr( "role", "tabpanel" );
|
|
|
|
|
|
|
|
this.headers
|
|
|
|
.not( this.active )
|
2015-03-14 11:19:32 +00:00
|
|
|
.attr( {
|
|
|
|
"aria-selected": "false",
|
|
|
|
"aria-expanded": "false",
|
|
|
|
tabIndex: -1
|
|
|
|
} )
|
|
|
|
.next()
|
|
|
|
.attr( {
|
|
|
|
"aria-hidden": "true"
|
|
|
|
} )
|
|
|
|
.hide();
|
2012-11-12 02:37:56 +00:00
|
|
|
|
2015-08-21 04:12:07 +00:00
|
|
|
// Make sure at least one header is in the tab order
|
2012-11-12 02:37:56 +00:00
|
|
|
if ( !this.active.length ) {
|
|
|
|
this.headers.eq( 0 ).attr( "tabIndex", 0 );
|
|
|
|
} else {
|
2015-03-14 11:19:32 +00:00
|
|
|
this.active.attr( {
|
2012-11-12 02:37:56 +00:00
|
|
|
"aria-selected": "true",
|
2013-10-28 01:57:01 +00:00
|
|
|
"aria-expanded": "true",
|
2012-11-12 02:37:56 +00:00
|
|
|
tabIndex: 0
|
2015-03-14 11:19:32 +00:00
|
|
|
} )
|
|
|
|
.next()
|
|
|
|
.attr( {
|
|
|
|
"aria-hidden": "false"
|
|
|
|
} );
|
2012-11-12 02:37:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
this._createIcons();
|
|
|
|
|
|
|
|
this._setupEvents( options.event );
|
2009-01-19 13:50:51 +00:00
|
|
|
|
2012-02-16 21:51:46 +00:00
|
|
|
if ( heightStyle === "fill" ) {
|
2011-02-03 16:04:22 +00:00
|
|
|
maxHeight = parent.height();
|
2015-03-14 11:19:32 +00:00
|
|
|
this.element.siblings( ":visible" ).each( function() {
|
2010-12-19 21:22:26 +00:00
|
|
|
var elem = $( this ),
|
|
|
|
position = elem.css( "position" );
|
|
|
|
|
|
|
|
if ( position === "absolute" || position === "fixed" ) {
|
|
|
|
return;
|
|
|
|
}
|
2011-11-18 11:19:32 +00:00
|
|
|
maxHeight -= elem.outerHeight( true );
|
2015-03-14 11:19:32 +00:00
|
|
|
} );
|
2010-07-22 23:10:14 +00:00
|
|
|
|
2015-03-14 11:19:32 +00:00
|
|
|
this.headers.each( function() {
|
2010-07-22 23:10:14 +00:00
|
|
|
maxHeight -= $( this ).outerHeight( true );
|
2015-03-14 11:19:32 +00:00
|
|
|
} );
|
2009-01-22 13:10:18 +00:00
|
|
|
|
2010-07-22 23:10:14 +00:00
|
|
|
this.headers.next()
|
2015-03-14 11:19:32 +00:00
|
|
|
.each( function() {
|
2010-07-22 23:10:14 +00:00
|
|
|
$( this ).height( Math.max( 0, maxHeight -
|
|
|
|
$( this ).innerHeight() + $( this ).height() ) );
|
2015-03-14 11:19:32 +00:00
|
|
|
} )
|
2010-07-22 23:10:14 +00:00
|
|
|
.css( "overflow", "auto" );
|
2012-02-16 21:51:46 +00:00
|
|
|
} else if ( heightStyle === "auto" ) {
|
2008-12-22 14:50:59 +00:00
|
|
|
maxHeight = 0;
|
2010-07-22 23:10:14 +00:00
|
|
|
this.headers.next()
|
2015-03-14 11:19:32 +00:00
|
|
|
.each( function() {
|
2015-04-13 02:17:16 +00:00
|
|
|
var isVisible = $( this ).is( ":visible" );
|
|
|
|
if ( !isVisible ) {
|
|
|
|
$( this ).show();
|
|
|
|
}
|
2012-11-14 00:02:02 +00:00
|
|
|
maxHeight = Math.max( maxHeight, $( this ).css( "height", "" ).height() );
|
2015-04-13 02:17:16 +00:00
|
|
|
if ( !isVisible ) {
|
|
|
|
$( this ).hide();
|
|
|
|
}
|
2015-03-14 11:19:32 +00:00
|
|
|
} )
|
2010-07-22 23:10:14 +00:00
|
|
|
.height( maxHeight );
|
2008-12-22 14:50:59 +00:00
|
|
|
}
|
|
|
|
},
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2011-01-12 01:53:31 +00:00
|
|
|
_activate: function( index ) {
|
2011-02-05 02:52:09 +00:00
|
|
|
var active = this._findActive( index )[ 0 ];
|
2009-04-15 02:33:28 +00:00
|
|
|
|
2015-08-21 04:12:07 +00:00
|
|
|
// Trying to activate the already active panel
|
2011-02-05 02:52:09 +00:00
|
|
|
if ( active === this.active[ 0 ] ) {
|
2011-01-13 19:42:35 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-08-21 04:12:07 +00:00
|
|
|
// Trying to collapse, simulate a click on the currently active header
|
2011-04-04 18:22:54 +00:00
|
|
|
active = active || this.active[ 0 ];
|
2011-01-25 05:52:42 +00:00
|
|
|
|
2015-03-14 11:19:32 +00:00
|
|
|
this._eventHandler( {
|
2011-02-05 02:52:09 +00:00
|
|
|
target: active,
|
|
|
|
currentTarget: active,
|
|
|
|
preventDefault: $.noop
|
2015-03-14 11:19:32 +00:00
|
|
|
} );
|
2009-01-19 13:50:51 +00:00
|
|
|
},
|
2009-01-22 13:10:18 +00:00
|
|
|
|
2010-07-27 21:23:00 +00:00
|
|
|
_findActive: function( selector ) {
|
2011-01-25 05:52:42 +00:00
|
|
|
return typeof selector === "number" ? this.headers.eq( selector ) : $();
|
2009-01-19 13:50:51 +00:00
|
|
|
},
|
2009-01-22 13:10:18 +00:00
|
|
|
|
2011-02-21 15:07:42 +00:00
|
|
|
_setupEvents: function( event ) {
|
2012-11-12 02:37:56 +00:00
|
|
|
var events = {
|
|
|
|
keydown: "_keydown"
|
|
|
|
};
|
|
|
|
if ( event ) {
|
2013-12-07 17:00:07 +00:00
|
|
|
$.each( event.split( " " ), function( index, eventName ) {
|
2012-11-12 02:37:56 +00:00
|
|
|
events[ eventName ] = "_eventHandler";
|
2015-03-14 11:19:32 +00:00
|
|
|
} );
|
2011-02-21 15:07:42 +00:00
|
|
|
}
|
2012-11-12 02:37:56 +00:00
|
|
|
|
|
|
|
this._off( this.headers.add( this.headers.next() ) );
|
2012-06-13 12:00:45 +00:00
|
|
|
this._on( this.headers, events );
|
2015-03-14 11:19:32 +00:00
|
|
|
this._on( this.headers.next(), { keydown: "_panelKeyDown" } );
|
2012-11-12 02:37:56 +00:00
|
|
|
this._hoverable( this.headers );
|
|
|
|
this._focusable( this.headers );
|
2011-02-21 15:07:42 +00:00
|
|
|
},
|
|
|
|
|
2011-01-12 01:53:31 +00:00
|
|
|
_eventHandler: function( event ) {
|
2014-12-03 16:23:19 +00:00
|
|
|
var activeChildren, clickedChildren,
|
|
|
|
options = this.options,
|
2011-01-25 05:52:42 +00:00
|
|
|
active = this.active,
|
2011-01-13 19:42:35 +00:00
|
|
|
clicked = $( event.currentTarget ),
|
2011-01-25 05:52:42 +00:00
|
|
|
clickedIsActive = clicked[ 0 ] === active[ 0 ],
|
|
|
|
collapsing = clickedIsActive && options.collapsible,
|
2011-02-04 04:02:46 +00:00
|
|
|
toShow = collapsing ? $() : clicked.next(),
|
2011-01-25 05:52:42 +00:00
|
|
|
toHide = active.next(),
|
|
|
|
eventData = {
|
|
|
|
oldHeader: active,
|
2012-05-30 12:40:03 +00:00
|
|
|
oldPanel: toHide,
|
2011-01-25 05:52:42 +00:00
|
|
|
newHeader: collapsing ? $() : clicked,
|
2012-05-30 12:40:03 +00:00
|
|
|
newPanel: toShow
|
2011-01-25 05:52:42 +00:00
|
|
|
};
|
2011-01-13 19:42:35 +00:00
|
|
|
|
2011-01-13 21:45:21 +00:00
|
|
|
event.preventDefault();
|
|
|
|
|
2012-03-07 19:00:02 +00:00
|
|
|
if (
|
2015-08-24 13:32:13 +00:00
|
|
|
|
2011-02-04 04:02:46 +00:00
|
|
|
// click on active header, but not collapsible
|
|
|
|
( clickedIsActive && !options.collapsible ) ||
|
2015-08-24 13:32:13 +00:00
|
|
|
|
2011-02-04 04:02:46 +00:00
|
|
|
// allow canceling activation
|
2011-04-04 15:53:19 +00:00
|
|
|
( this._trigger( "beforeActivate", event, eventData ) === false ) ) {
|
2011-01-25 05:52:42 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
options.active = collapsing ? false : this.headers.index( clicked );
|
2009-01-22 13:10:18 +00:00
|
|
|
|
2015-08-21 04:12:07 +00:00
|
|
|
// When the call to ._toggle() comes after the class changes
|
2011-01-11 18:20:50 +00:00
|
|
|
// it causes a very odd bug in IE 8 (see #6720)
|
2011-01-25 05:52:42 +00:00
|
|
|
this.active = clickedIsActive ? $() : clicked;
|
2011-02-04 04:02:46 +00:00
|
|
|
this._toggle( eventData );
|
2011-01-11 18:20:50 +00:00
|
|
|
|
2015-08-21 04:12:07 +00:00
|
|
|
// Switch classes
|
2012-05-08 19:08:05 +00:00
|
|
|
// corner classes on the previously active header stay after the animation
|
2014-12-03 16:23:19 +00:00
|
|
|
this._removeClass( active, "ui-accordion-header-active", "ui-state-active" );
|
2012-02-27 02:54:05 +00:00
|
|
|
if ( options.icons ) {
|
2014-12-03 16:23:19 +00:00
|
|
|
activeChildren = active.children( ".ui-accordion-header-icon" );
|
|
|
|
this._removeClass( activeChildren, null, options.icons.activeHeader )
|
|
|
|
._addClass( activeChildren, null, options.icons.header );
|
2012-02-27 02:54:05 +00:00
|
|
|
}
|
|
|
|
|
2010-07-22 23:10:14 +00:00
|
|
|
if ( !clickedIsActive ) {
|
2014-12-03 16:23:19 +00:00
|
|
|
this._removeClass( clicked, "ui-accordion-header-collapsed" )
|
|
|
|
._addClass( clicked, "ui-accordion-header-active", "ui-state-active" );
|
2012-02-27 02:54:05 +00:00
|
|
|
if ( options.icons ) {
|
2014-12-03 16:23:19 +00:00
|
|
|
clickedChildren = clicked.children( ".ui-accordion-header-icon" );
|
|
|
|
this._removeClass( clickedChildren, null, options.icons.header )
|
|
|
|
._addClass( clickedChildren, null, options.icons.activeHeader );
|
2012-02-27 02:54:05 +00:00
|
|
|
}
|
|
|
|
|
2014-12-03 16:23:19 +00:00
|
|
|
this._addClass( clicked.next(), "ui-accordion-content-active" );
|
2008-06-04 02:34:33 +00:00
|
|
|
}
|
2009-01-19 13:50:51 +00:00
|
|
|
},
|
2009-01-22 13:10:18 +00:00
|
|
|
|
2011-02-04 04:02:46 +00:00
|
|
|
_toggle: function( data ) {
|
2012-05-30 12:40:03 +00:00
|
|
|
var toShow = data.newPanel,
|
|
|
|
toHide = this.prevShow.length ? this.prevShow : data.oldPanel;
|
2009-01-19 13:50:51 +00:00
|
|
|
|
2015-08-21 04:12:07 +00:00
|
|
|
// Handle activating a panel during the animation for another activation
|
2012-02-16 21:51:46 +00:00
|
|
|
this.prevShow.add( this.prevHide ).stop( true, true );
|
|
|
|
this.prevShow = toShow;
|
|
|
|
this.prevHide = toHide;
|
2009-01-22 13:10:18 +00:00
|
|
|
|
2012-02-16 21:51:46 +00:00
|
|
|
if ( this.options.animate ) {
|
|
|
|
this._animate( toShow, toHide, data );
|
2009-01-19 13:50:51 +00:00
|
|
|
} else {
|
2011-02-04 04:02:46 +00:00
|
|
|
toHide.hide();
|
|
|
|
toShow.show();
|
2012-03-02 12:14:44 +00:00
|
|
|
this._toggleComplete( data );
|
2009-01-19 13:50:51 +00:00
|
|
|
}
|
2009-01-22 13:10:18 +00:00
|
|
|
|
2015-03-14 11:19:32 +00:00
|
|
|
toHide.attr( {
|
2012-05-24 19:46:22 +00:00
|
|
|
"aria-hidden": "true"
|
2015-03-14 11:19:32 +00:00
|
|
|
} );
|
|
|
|
toHide.prev().attr( {
|
2015-01-05 20:44:49 +00:00
|
|
|
"aria-selected": "false",
|
|
|
|
"aria-expanded": "false"
|
2015-03-14 11:19:32 +00:00
|
|
|
} );
|
2015-08-24 13:32:13 +00:00
|
|
|
|
2012-05-24 19:46:22 +00:00
|
|
|
// if we're switching panels, remove the old header from the tab order
|
|
|
|
// if we're opening from collapsed state, remove the previous header from the tab order
|
|
|
|
// if we're collapsing, then keep the collapsing header in the tab order
|
|
|
|
if ( toShow.length && toHide.length ) {
|
2015-03-14 11:19:32 +00:00
|
|
|
toHide.prev().attr( {
|
2013-10-28 01:57:01 +00:00
|
|
|
"tabIndex": -1,
|
|
|
|
"aria-expanded": "false"
|
2015-03-14 11:19:32 +00:00
|
|
|
} );
|
2012-05-24 19:46:22 +00:00
|
|
|
} else if ( toShow.length ) {
|
2015-03-14 11:19:32 +00:00
|
|
|
this.headers.filter( function() {
|
2015-01-05 20:44:49 +00:00
|
|
|
return parseInt( $( this ).attr( "tabIndex" ), 10 ) === 0;
|
2015-03-14 11:19:32 +00:00
|
|
|
} )
|
|
|
|
.attr( "tabIndex", -1 );
|
2012-05-24 19:46:22 +00:00
|
|
|
}
|
|
|
|
|
2012-03-27 14:19:35 +00:00
|
|
|
toShow
|
2013-10-28 01:57:01 +00:00
|
|
|
.attr( "aria-hidden", "false" )
|
2012-03-27 14:19:35 +00:00
|
|
|
.prev()
|
2015-03-14 11:19:32 +00:00
|
|
|
.attr( {
|
2012-03-27 14:19:35 +00:00
|
|
|
"aria-selected": "true",
|
2015-01-05 20:44:49 +00:00
|
|
|
"aria-expanded": "true",
|
|
|
|
tabIndex: 0
|
2015-03-14 11:19:32 +00:00
|
|
|
} );
|
2009-01-19 13:50:51 +00:00
|
|
|
},
|
2009-01-22 13:10:18 +00:00
|
|
|
|
2012-02-16 21:51:46 +00:00
|
|
|
_animate: function( toShow, toHide, data ) {
|
|
|
|
var total, easing, duration,
|
|
|
|
that = this,
|
2012-10-01 20:25:23 +00:00
|
|
|
adjust = 0,
|
2015-03-02 23:43:07 +00:00
|
|
|
boxSizing = toShow.css( "box-sizing" ),
|
2012-02-16 21:51:46 +00:00
|
|
|
down = toShow.length &&
|
|
|
|
( !toHide.length || ( toShow.index() < toHide.index() ) ),
|
|
|
|
animate = this.options.animate || {},
|
|
|
|
options = down && animate.down || animate,
|
|
|
|
complete = function() {
|
2012-03-02 12:14:44 +00:00
|
|
|
that._toggleComplete( data );
|
2012-02-16 21:51:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if ( typeof options === "number" ) {
|
|
|
|
duration = options;
|
|
|
|
}
|
|
|
|
if ( typeof options === "string" ) {
|
|
|
|
easing = options;
|
|
|
|
}
|
2015-08-24 13:32:13 +00:00
|
|
|
|
2012-02-16 21:51:46 +00:00
|
|
|
// fall back from options to animation in case of partial down settings
|
|
|
|
easing = easing || options.easing || animate.easing;
|
|
|
|
duration = duration || options.duration || animate.duration;
|
|
|
|
|
2012-04-23 18:25:23 +00:00
|
|
|
if ( !toHide.length ) {
|
2013-09-17 13:23:52 +00:00
|
|
|
return toShow.animate( this.showProps, duration, easing, complete );
|
2012-02-16 21:51:46 +00:00
|
|
|
}
|
2012-04-23 18:25:23 +00:00
|
|
|
if ( !toShow.length ) {
|
2013-09-17 13:23:52 +00:00
|
|
|
return toHide.animate( this.hideProps, duration, easing, complete );
|
2012-02-16 21:51:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
total = toShow.show().outerHeight();
|
2013-09-17 13:23:52 +00:00
|
|
|
toHide.animate( this.hideProps, {
|
2012-10-01 20:25:23 +00:00
|
|
|
duration: duration,
|
|
|
|
easing: easing,
|
|
|
|
step: function( now, fx ) {
|
|
|
|
fx.now = Math.round( now );
|
|
|
|
}
|
2015-03-14 11:19:32 +00:00
|
|
|
} );
|
2012-02-16 21:51:46 +00:00
|
|
|
toShow
|
|
|
|
.hide()
|
2013-09-17 13:23:52 +00:00
|
|
|
.animate( this.showProps, {
|
2012-10-01 20:25:23 +00:00
|
|
|
duration: duration,
|
|
|
|
easing: easing,
|
|
|
|
complete: complete,
|
|
|
|
step: function( now, fx ) {
|
2012-10-01 20:52:54 +00:00
|
|
|
fx.now = Math.round( now );
|
2012-10-01 20:25:23 +00:00
|
|
|
if ( fx.prop !== "height" ) {
|
2015-03-02 23:43:07 +00:00
|
|
|
if ( boxSizing === "content-box" ) {
|
|
|
|
adjust += fx.now;
|
|
|
|
}
|
2012-10-01 20:52:54 +00:00
|
|
|
} else if ( that.options.heightStyle !== "content" ) {
|
2012-10-01 20:25:23 +00:00
|
|
|
fx.now = Math.round( total - toHide.outerHeight() - adjust );
|
|
|
|
adjust = 0;
|
|
|
|
}
|
|
|
|
}
|
2015-03-14 11:19:32 +00:00
|
|
|
} );
|
2012-02-16 21:51:46 +00:00
|
|
|
},
|
|
|
|
|
2012-03-02 12:14:44 +00:00
|
|
|
_toggleComplete: function( data ) {
|
2014-12-03 16:23:19 +00:00
|
|
|
var toHide = data.oldPanel,
|
|
|
|
prev = toHide.prev();
|
2011-02-05 03:37:29 +00:00
|
|
|
|
2014-12-03 16:23:19 +00:00
|
|
|
this._removeClass( toHide, "ui-accordion-content-active" );
|
|
|
|
this._removeClass( prev, "ui-accordion-header-active" )
|
|
|
|
._addClass( prev, "ui-accordion-header-collapsed" );
|
2012-05-08 19:08:05 +00:00
|
|
|
|
2011-01-13 02:32:51 +00:00
|
|
|
// Work around for rendering bug in IE (#5421)
|
2011-02-05 03:37:29 +00:00
|
|
|
if ( toHide.length ) {
|
2013-12-07 17:00:07 +00:00
|
|
|
toHide.parent()[ 0 ].className = toHide.parent()[ 0 ].className;
|
2011-01-13 21:36:14 +00:00
|
|
|
}
|
2011-02-05 03:37:29 +00:00
|
|
|
this._trigger( "activate", null, data );
|
2008-06-04 02:34:33 +00:00
|
|
|
}
|
2015-03-14 11:19:32 +00:00
|
|
|
} );
|
2008-06-04 02:34:33 +00:00
|
|
|
|
2015-03-14 11:19:32 +00:00
|
|
|
} ) );
|