Opened 13 years ago
Closed 13 years ago
#4935 closed bug (fixed)
AutoHeight in IE6 and Links
Reported by: | Panman01 | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.8.2 |
Component: | ui.accordion | Version: | 1.7.2 |
Keywords: | accordion, ie6, autoheight, ie 6, links, href, | Cc: | |
Blocked by: | Blocking: |
Description
It seems that IE 6 with accordions that have the autoHeight option set to false have issues with links. When switching to another accordion pane, the links in the content show but disappear. However, regular text and such is ok. Attached is some example code.
Attachments (1)
Change History (4)
Changed 13 years ago by
Attachment: | accordion_test.html added |
---|
comment:1 Changed 13 years ago by
Milestone: | TBD → 1.8 |
---|
This should have been fixed by #4444. Need to verify.
comment:2 Changed 13 years ago by
I can verify that this is not fixed as of version 1.8. Here is the fix to correct the issue:
In ui.accordion.js, find the following statement:
if(a.browser.msie) {
this.element.find("a").css("zoom","1")
}
and replace with:
if(a.browser.msie) {
this.element.find("a").css("zoom","1"); this.element.css("zoom","1");
}
Adding zoom:1 to each main element (the elements following the headers) resolves the issue.
comment:3 Changed 13 years ago by
Milestone: | 1.9 → 1.8.2 |
---|---|
Resolution: | → fixed |
Status: | new → closed |
This was fixed in a previous release.
Example code