resizable accordion is broken in latest release
so I was working on a jquery accordion that I wanted to customize with some special behavior.
The widget I am working on only has 1 tab and is collabsible, resizeable and draggable.
I have applied the resizeable to a parent widget.
since I don't want the parent widget to obscure more space than it needs if the accordion is collabsed I resize the parent widget when I collabse expand the accordion. I use 4 variables to this. (uncollapsed width/height and collapsed width/height).
I get the active state with `.accordion("option", "active")` and this broken.
if I collapse the accordion after a resize it won't return the correct active state anymore.
in the jquery ui that js fiddles uses it works perfectly...
the active state is logged with every double click to the header...
see broken with latest version:
and jsfiddle with their version:
I hope somebody can help!