diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2009-08-06 18:44:36 +0000 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2009-08-06 18:44:36 +0000 |
commit | 425e76355a289341eb588874e04b82afdc9eeb99 (patch) | |
tree | 5fb46b03e53d5faa4be7b264b218e06673453f4c /ui/ui.accordion.js | |
parent | 20e6ef30a7465294cdee081f14eb8ef3e0821514 (diff) | |
download | jquery-ui-425e76355a289341eb588874e04b82afdc9eeb99.tar.gz jquery-ui-425e76355a289341eb588874e04b82afdc9eeb99.zip |
accordion: fix for #4754; related tests were failing before, fixed them, too (checked to correct sizes in Firebug)
Diffstat (limited to 'ui/ui.accordion.js')
-rw-r--r-- | ui/ui.accordion.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ui.accordion.js b/ui/ui.accordion.js index a11cf94d2..f05a3b1a5 100644 --- a/ui/ui.accordion.js +++ b/ui/ui.accordion.js @@ -222,7 +222,7 @@ $.widget("ui.accordion", { } else if ( o.autoHeight ) { maxHeight = 0; this.headers.next().each(function() { - maxHeight = Math.max(maxHeight, $(this).outerHeight()); + maxHeight = Math.max(maxHeight, $(this).height()); }).height(maxHeight); } |