From 96fc37a9417759262c2b39fc49c2684b3f34f544 Mon Sep 17 00:00:00 2001 From: Christian Schneider Date: Wed, 23 May 2012 14:07:12 +0000 Subject: Fix itjs boot script fallback to not always include retry=1 and at the same time make retry=1 less cacheable to increase chance of successful recovery --- itjs/boot.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'itjs') diff --git a/itjs/boot.js b/itjs/boot.js index 059bd78..80ad062 100644 --- a/itjs/boot.js +++ b/itjs/boot.js @@ -186,11 +186,12 @@ function it_boot(file, isretry) it_boot.file = file; it_boot.sequence = isretry ? "r" : "b"; var loader = it_boot_getloader(); + var bootparam = "boot=1" + (isretry ? "&retry=1" : ""); if (loader) { it_boot.sequence += "l"; - loader.open("GET", it_boot_addparam(file, "boot=1" + (isretry ? "&retry=1" : ""))); + loader.open("GET", it_boot_addparam(file, bootparam)); loader.onreadystatechange = function() { var error = "", code = ""; @@ -234,13 +235,14 @@ 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"; + bootparam += "&script=1"; if (window.opera || (document.all && navigator.platform.indexOf("Mac") >= 0)) - document.write('<\/sc'+'ript>'); + document.write('<\/sc'+'ript>'); else if (dom) { var tag = doc.createElement("script"); - tag.src = it_boot_addparam(file, 'boot=1&script=1&retry=1'); + tag.src = it_boot_addparam(file, bootparam); dom.appendChild(tag); } else -- cgit v1.2.3