Search and Top Navigation
#5406 closed bug (fixed)
Opened March 23, 2010 01:55PM UTC
Closed July 13, 2010 01:41PM UTC
Last modified November 19, 2010 06:25PM UTC
autoHeight resize not working
Reported by: | jghermsen | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.8.3 |
Component: | ui.accordion | Version: | 1.8 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I found the resize when using autoheight doesn't work if content gets larger.
Solution in the resize autoHeight section add:
$(this).css("height", "");
So something like:
maxHeight = 0;
this.headers.next().each(function() {
$(this).css("height", "");
maxHeight = Math.max(maxHeight, $(this).height());
}).height(maxHeight);
Fixed in ba387ce.