From f4b3cd527116b25d4d6f44c2df0f2c472b961e6a Mon Sep 17 00:00:00 2001 From: Maciej MroziĊ„ski Date: Sun, 21 Oct 2012 22:24:50 +0200 Subject: Accordion: Remove code that sets accordion height. Fixed #8696 - Multiple collapsible Accordions won't work together. --- ui/jquery.ui.accordion.js | 7 ------- 1 file changed, 7 deletions(-) (limited to 'ui') diff --git a/ui/jquery.ui.accordion.js b/ui/jquery.ui.accordion.js index 108647419..fd3a983b8 100644 --- a/ui/jquery.ui.accordion.js +++ b/ui/jquery.ui.accordion.js @@ -75,7 +75,6 @@ $.widget( "ui.accordion", { .show(); this._createIcons(); - this.originalHeight = this.element[0].style.height; this.refresh(); // ARIA @@ -198,7 +197,6 @@ $.widget( "ui.accordion", { } }); if ( this.options.heightStyle !== "content" ) { - this.element.css( "height", this.originalHeight ); contents.css( "height", "" ); } }, @@ -289,7 +287,6 @@ $.widget( "ui.accordion", { heightStyle = this.options.heightStyle, parent = this.element.parent(); - this.element.css( "height", this.originalHeight ); if ( heightStyle === "fill" ) { // IE 6 treats height like minHeight, so we need to turn off overflow @@ -332,10 +329,6 @@ $.widget( "ui.accordion", { }) .height( maxHeight ); } - - if ( heightStyle !== "content" ) { - this.element.height( this.element.height() ); - } }, _activate: function( index ) { -- cgit v1.2.3