Mark Chance commented on Bug JENKINS-26378

I had a similar problem - with the plugin installed and my skinning _javascript_, the "Loading..." never went away. I think it has to do with event handlers, etc. Try this in your _javascript_:

function myFunction() {
  // the stuff you want to do.
}
var body = document.getElementsByTagName('body');
if (window.addEventListener) {
  window.addEventListener('load', myFunction, false);
}
else if (window.attachEvent) {
  window.attachEvent('onload', myFunction );
}

Then it works fine. I didn't run into the other issues.

This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira

--
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to