Attempt to fix orange bug 540980, based on the theory that the document.open() without document.close() was preventing the outer page's onload from ever firing, depending on a race.

This commit is contained in:
Jesse Ruderman 2010-01-20 16:58:05 -08:00
parent 811332f5a6
commit b21dff6b69

View File

@ -8,5 +8,6 @@ function o()
{
document.open();
parent.document.documentElement.removeAttribute("class");
document.close();
}
</script>