#5406 closed bug (fixed)
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);
Change History (3)
comment:1 Changed 13 years ago by
Milestone: | TBD → 1.9 |
---|---|
Resolution: | → fixed |
Status: | new → closed |
comment:2 Changed 13 years ago by
Milestone: | 1.9 → 1.8.3 |
---|
comment:3 Changed 12 years ago by
Accordion: Fixed resize method for autoHeight. Fixes #5406 - autoHeight resize not working.
Changeset: ba387ce1c5ee4b0adce4f490fe1052ec525cb121
Note: See
TracTickets for help on using
tickets.
Fixed in ba387ce.