diff options
Diffstat (limited to 'itjs')
-rw-r--r-- | itjs/loader.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/itjs/loader.js b/itjs/loader.js index db98583..9f1dd53 100644 --- a/itjs/loader.js +++ b/itjs/loader.js @@ -67,12 +67,11 @@ load: function(baseurl, pos, num, query_volatile, retry) { this.req = null; var samehost = (baseurl.indexOf('http://') < 0 || baseurl.indexOf(window.location.hostname) > 0); - var use_script = (window.console && window.console.firebug) || !samehost; // use XMLHTTP request only if on same host and not using firebug if (retry) baseurl += (baseurl.match(/\?/) ? "&" : "?") + "retry=" + retry; - if (!use_script) + if (samehost) // use XMLHTTP request only if on same host { try { @@ -120,7 +119,7 @@ load: function(baseurl, pos, num, query_volatile, retry) { var req_url = baseurl + (baseurl.match(/\?/) ? "&" : "?") + "pos=" + pos + "&num=" + num + (query_volatile ? query_volatile : "") + (this.post_data ? '&' + this.post_data : "") + "&itjs_call=it_loader.__inst" + this.instance + "&itjs_callid=" + ++this.callid; - if (!use_script || (window.opera && !window.XMLHttpRequest)) // Opera 7 only works with iframes + if (samehost || (window.opera && !window.XMLHttpRequest)) // Opera 7 only works with iframes { var scrpt = document.createElement("iframe"); scrpt.style.width = scrpt.style.height = 1; |