summaryrefslogtreecommitdiff
path: root/itjs
diff options
context:
space:
mode:
Diffstat (limited to 'itjs')
-rw-r--r--itjs/boot.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/itjs/boot.js b/itjs/boot.js
index 4e52489..5261405 100644
--- a/itjs/boot.js
+++ b/itjs/boot.js
@@ -187,8 +187,9 @@ function it_boot(file, isretry)
it_boot.sequence = isretry ? "r" : "b";
var loader = it_boot_getloader();
var bootparam = "boot=1" + (isretry ? "&retry=1" : "");
+ var jsdebug = !!document.location.hostname.match(/\.jsdebug\./);
- if (loader)
+ if (loader && !jsdebug)
{
it_boot.sequence += "l";
loader.open("GET", it_boot_addparam(file, bootparam));