/* * Accordion 1.5 - jQuery menu widget * * Copyright (c) 2007 Jörn Zaefferer, Frank Marcia * * http://bassistance.de/jquery-plugins/jquery-plugin-accordion/ * * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html * * Revision: $Id: jquery.accordion.js 4137 2007-12-13 12:37:58Z joern.zaefferer $ * */ (function($) { $.ui = $.ui || {}; $.ui.accordion = {}; $.extend($.ui.accordion, { defaults: { selectedClass: "selected", alwaysOpen: true, animated: 'slide', event: "click", header: "a", autoheight: true }, animations: { slide: function(settings, additions) { settings = $.extend({ easing: "swing", duration: 300 }, settings, additions); if ( !settings.toHide.size() ) { settings.toShow.animate({height: "show"}, settings); return; } var hideHeight = settings.toHide.height(), showHeight = settings.toShow.height(), difference = showHeight / hideHeight; settings.toShow.css({ height: 0, overflow: 'hidden' }).show(); settings.toHide.filter(":hidden").each(settings.complete).end().filter(":visible").animate({height:"hide"},{ step: function(now){ settings.toShow.height((hideHeight - (now)) * difference ); }, duration: settings.duration, easing: settings.easing, complete: settings.complete }); }, bounceslide: function(settings) { this.slide(settings, { easing: settings.down ? "bounceout" : "swing", duration: settings.down ? 1000 : 200 }); }, easeslide: function(settings) { this.slide(settings, { easing: "easeinout", duration: 700 }) } } }); $.fn.extend({ accordion: function(settings) { if ( !this.length ) return this; // setup configuration settings = $.extend({}, $.ui.accordion.defaults, settings); if ( settings.navigation ) { var current = this.find("a").filter(function() { return this.href == location.href; }); if ( current.length ) { if ( current.filter(settings.header).length ) { settings.active = current; } else { settings.active = current.parent().parent().prev(); current.addClass("current"); } } } // calculate active if not specified, using the first header var container = this, headers = container.find(settings.header), active = findActive(settings.active), running = 0; if ( settings.fillSpace ) { var maxHeight = this.parent().height(); headers.each(function() { maxHeight -= $(this).outerHeight(); }); var maxPadding = 0; headers.next().each(function() { maxPadding = Math.max(maxPadding, $(this).innerHeight() - $(this).height()); }).height(maxHeight - maxPadding); } else if ( settings.autoheight ) { var maxHeight = 0; headers.next().each(function() { maxHeight = Math.max(maxHeight, $(this).outerHeight()); }).height(maxHeight); } headers .not(active || "") .next() .hide(); active.parent().andSelf().addClass(settings.selectedClass); function findActive(selector) { return selector != undefined ? typeof selector == "number" ? headers.filter(":eq(" + selector + ")") : headers.not(headers.not(selector)) : selector === false ? $("