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 } }
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.