Bug in ui.tabs selected tab detection
This bug causes a problem when memorizing the opened tab using cookies.
To be more specific, line 172 of jquery.ui.tabs.js should be:
o.selected = o.selected (this.lis.length ? 0 : -1);
|
it is clear that the actual line has a problem, since
o.selected = o.selected this.lis.length ? 0 : -1;
|
is equivalent to
o.selected = (o.selected this.lis.length) ? 0 : -1;
|
(at least in Firefox)
Change History (3)
Resolution: |
→ fixed
|
Status: |
new →
closed
|
Summary: |
Bug in ui.tabs →
Bug in ui.tabs selected tab detection
|
Fixed in r3784.