Ticket #5122 (closed bug: fixed)
Bug in ui.tabs selected tab detection
| Reported by: | th3br41n | Owned by: | |
|---|---|---|---|
| Priority: | minor | Milestone: | 1.8 |
| Component: | ui.tabs | Version: | 1.8rc1 |
| Keywords: | cookie | Cc: | |
| Blocking: | Blocked by: |
Description
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:
| (this.lis.length ? 0 : -1); |
it is clear that the actual line has a problem, since
| this.lis.length ? 0 : -1; |
is equivalent to
| this.lis.length) ? 0 : -1; |
(at least in Firefox)
Change History
Note: See
TracTickets for help on using
tickets.

