diff options
| author | Urban Müller | 2007-10-25 11:40:27 +0000 | 
|---|---|---|
| committer | Urban Müller | 2007-10-25 11:40:27 +0000 | 
| commit | e83f0b52aa8bdaa3123c64645ba2cdf6def7c2c8 (patch) | |
| tree | 880a6ef626c0e0f66a03fb54c37df979e3ff60d7 /itjs | |
| parent | 30defddf9b1eefed8f2bb3da8b14a1b0a3b087a4 (diff) | |
| download | itools-e83f0b52aa8bdaa3123c64645ba2cdf6def7c2c8.tar.gz itools-e83f0b52aa8bdaa3123c64645ba2cdf6def7c2c8.tar.bz2 itools-e83f0b52aa8bdaa3123c64645ba2cdf6def7c2c8.zip | |
renamed starttime var
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) |