I've seen this here too.
The partial fix with innerHtml (which is the same as this stack overflow thing here: http://stackoverflow.com/a/3785323/490188) perhaps plus Douglas Crockford's purge method might mitigate this.

My simpler and brute force fix is a GreaseMonkey script:

if(location.pathname.indexOf('config') == -1) {
  //Reload every hour
  window.setTimeout(function() {location.reload()}, 1000 * 60 * 60)
}

Which will do for some of our extreme feedback monitors, or accidentally leaving it open overnight in a browser tab.

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