diff options
author | Thomas BrĂ¼derli | 2007-09-10 11:16:34 +0000 |
---|---|---|
committer | Thomas BrĂ¼derli | 2007-09-10 11:16:34 +0000 |
commit | 29be2c4ddfe4dc4631083ac42a611804f7d8ac36 (patch) | |
tree | 0069030aff0d9b6b5635267fa6a1e991a6d1c1a7 | |
parent | 95a3fda9c00b1e1fee6d6049fae7a761f8665afb (diff) | |
download | itools-29be2c4ddfe4dc4631083ac42a611804f7d8ac36.tar.gz itools-29be2c4ddfe4dc4631083ac42a611804f7d8ac36.tar.bz2 itools-29be2c4ddfe4dc4631083ac42a611804f7d8ac36.zip |
JS error flags again
-rw-r--r-- | itjs/boot.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/itjs/boot.js b/itjs/boot.js index 7f24d9f..cd6ab99 100644 --- a/itjs/boot.js +++ b/itjs/boot.js @@ -86,8 +86,10 @@ function it_boot_init() return; } + it_boot.sequence += "i"; window.clearTimeout(window.it_panictimer); window.it_boot_start(); + it_boot.sequence = ""; } function it_boot(file, isretry) @@ -126,8 +128,6 @@ function it_boot(file, isretry) window.execScript(code, "javascript"); // IE work-around to get script executed in global scope else window.setTimeout(code, 0); // Standard compliant version - - window.setTimeout('it_boot.sequence = "";', 50); } else error = "Incomplete script load @ status " + loader.status; |