Current File : /home/kelaby89/muzza.fit/wp-content/themes/deadlift/assets/js/wc-accordion.js |
/*!
* Accordion
*
* Deadlift 1.8.2
*/
/* jshint -W062 */
var WVCAccordion = function( $ ) {
'use strict';
return {
/**
* Init UI
*/
init : function () {
$( '.wolf-core-accordion' ).each( function() {
var openPanel = 0,
collapsible = false;
if ( $( this ).data( 'active-tab' ) ) {
openPanel = $( this ).data( 'active-tab' ) - 1;
}
if ( '0' == $( this ).data( 'active-tab' ) ) {
openPanel = false;
collapsible = true;
}
var options = {
autoHeight: true,
heightStyle: 'content',
active: openPanel,
collapsible: collapsible
};
$( this ).accordion( options );
} );
}
};
}( jQuery );
( function( $ ) {
'use strict';
$( document ).ready( function() {
WVCAccordion.init();
} );
} )( jQuery );