diff options
Diffstat (limited to 'ui/jquery.ui.accordion.js')
-rw-r--r-- | ui/jquery.ui.accordion.js | 7 |
1 files changed, 0 insertions, 7 deletions
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 ) { |