I've noticed that the popup from img_assist v6.x-2.0-alpha4 almost always erase the entire form when the fieldsets are set to display in vertical tabs. Am going to see if I can track down what code is causing this as the HTML for the form does actually display, but something clashes in the JS which causes the form DOM elements to be erased.

Comments

damienmckenna’s picture

It seems that in the popup it gets to the following line in vertical_tabs.js:

    $('div.vertical-tabs').show();

but never actually displays the vertical tabs, the DOM element stays hidden.

damienmckenna’s picture

So, reviewing what happens, my guess is that vertical_tabs.js loads and finishes before vertical_tabs.css, so the .show() code happens before the CSS that makes the vertical_tabs hidden (div.vertical_tabs {display: none;}). Of course ICBW.

damienmckenna’s picture

What I've done to resolve the problem was just to disable vertical tabs for the Image content type.