[jQuery] jquery-ui : accordion .. block height issue

[jQuery] jquery-ui : accordion .. block height issue


Hi all,
I have a problem with the accordion from UI ... If I have elements
that grow, the container will not.
As the accordion set a fixed height on the container, it cannot grow
=/
Here is the patch I use in ui.accordion.js (line 151) :
function toggle(toShow, toHide, data, clickedActive, down) {
    var finished = function(cancel) {
        running = cancel ? 0 : --running;
        if ( running )
            return;
        // trigger custom change event
        container.trigger("change", data);
        /* ********************************************************* */
        /* Addon to unset the fixed height */
        /* ********************************************************* */
        toShow.css("height", "auto");
        /* ********************************************************* */
    };
    ....
Hope it helps
Cheers