diff options
Diffstat (limited to 'itjs')
-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 aaa0321..efdaa6e 100644 --- a/itjs/boot.js +++ b/itjs/boot.js @@ -2,7 +2,7 @@ var it_boot_status = "boot"; var it_panictimer = window.setTimeout("it_panic(it_boot_status)", 31337), it_domtimer; -var it_catcherrstart = new Date().getTime(); +var it_starttime = new Date().getTime(); function it_catcherr(msg, url, line) { @@ -50,7 +50,7 @@ function it_boot_report(msg, file, line, more) window.clearTimeout(window.it_domtimer); window.clearTimeout(window.it_panictimer); - new Image().src = "/itjs/error.gif/" + escape(msg) + "|" + escape(file) + "|" + line + "|" + (new Date().getTime() - it_catcherrstart) + "|" + escape(more); + new Image().src = "/itjs/error.gif/" + escape(msg) + "|" + escape(file) + "|" + line + "|" + (new Date().getTime() - it_starttime) + "|" + escape(more); } function it_boot_checkcss(style, key, value) |