diff options
author | Thomas BrĂ¼derli | 2007-09-10 10:48:55 +0000 |
---|---|---|
committer | Thomas BrĂ¼derli | 2007-09-10 10:48:55 +0000 |
commit | 95a3fda9c00b1e1fee6d6049fae7a761f8665afb (patch) | |
tree | 07413eb902ef6cdba403a364dcce84554ee26737 | |
parent | 0d050f9631d411cd4bdec0a26a9d005349464395 (diff) | |
download | itools-95a3fda9c00b1e1fee6d6049fae7a761f8665afb.tar.gz itools-95a3fda9c00b1e1fee6d6049fae7a761f8665afb.tar.bz2 itools-95a3fda9c00b1e1fee6d6049fae7a761f8665afb.zip |
More process flags for error location
-rw-r--r-- | itjs/boot.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/itjs/boot.js b/itjs/boot.js index 32c8578..7f24d9f 100644 --- a/itjs/boot.js +++ b/itjs/boot.js @@ -108,6 +108,7 @@ function it_boot(file, isretry) if (loader) { + it_boot.sequence += "l"; loader.open("GET", it_boot_addparam(file, "boot=1" + (isretry ? "&retry=1" : ""))); loader.onreadystatechange = function() { @@ -149,6 +150,7 @@ function it_boot(file, isretry) { var doc = document; var dom = doc && (dom = doc.getElementById('it_boot_dom')); // HTML has been rendered + it_boot.sequence += "n"; if (window.opera || (document.all && navigator.platform.indexOf("Mac") >= 0)) document.write('<sc'+'ript type="text/javascript" src="'+it_boot_addparam(file, 'boot=1')+'"><\/sc'+'ript>'); |