Modify ↓
Ticket #1367 (closed bug: invalid)
animate width toggle work on 1.1.2 but NOT 1.1.3
| Reported by: | noo | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | 1.2.2 |
| Component: | effects | Version: | 1.1.3 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
$('a#sidePane_slider').click(function(){$('#sidePane').animate({width:'toggle', opacity:'show'}, "400"); return false;});
it working fine on 1.1.2, but not work in 1.1.3, any idea?
Change History
comment:2 Changed 5 years ago by davidserduke
- Status changed from new to closed
- Resolution set to invalid
- Milestone changed from 1.1.4 to 1.2.2
Without additional info I have to classify this as a design issue and an invalid bug. Please reopen it if you have any thing else that clarifies the problem.
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Have you tried
$('sidePane').animate({width:'toggle',opacity:'toggle'}, 400);
instead? I think the problem you are having is with opacity:'show' if the panel is already showing it will just exit and say it is complete.
I think this is likely a design change and not a bug. If you still think it is a bug then please submit additional information.