Does anyone knows, if it is possible to insert Issue collector iframe into page, so it appears when DOM loaded, not when button was clicked?
There is a documented bug on the inability to get the issue collector to load correctly in an iframe, please see https://jira.atlassian.com/browse/JRASERVER-45229
However that bug page does note a work-around for this:
Adding this to the HTML page that has the issue collector should resolve the problem:
$(document).ready(function() { checkContainer(); }); function unhide() { $("#atlwdg-container").removeClass("atlwdg-hidden"); } function checkContainer() { if ($('#atlwdg-loading').is(':visible')) { //if the container is visible on the page unhide(); //Adds a grid to the html } else { setTimeout(checkContainer, 50); //wait 50 ms, then try again } }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.