diff options
author | Christian Schneider | 2007-07-19 09:40:57 +0000 |
---|---|---|
committer | Christian Schneider | 2007-07-19 09:40:57 +0000 |
commit | 11c189116b1fbba7d25a77e2bc620a20e9fd9b57 (patch) | |
tree | 886edb235a450a7f0a0bcfa28f9875e5e6a63f5d /itjs/loader.js | |
parent | aba070174a9989ef13a5f131423fb67784bf236a (diff) | |
download | itools-11c189116b1fbba7d25a77e2bc620a20e9fd9b57.tar.gz itools-11c189116b1fbba7d25a77e2bc620a20e9fd9b57.tar.bz2 itools-11c189116b1fbba7d25a77e2bc620a20e9fd9b57.zip |
Added missing query_volatile to iframe fallback loader
Diffstat (limited to 'itjs/loader.js')
-rw-r--r-- | itjs/loader.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/itjs/loader.js b/itjs/loader.js index 33cd27b..2a29d8b 100644 --- a/itjs/loader.js +++ b/itjs/loader.js @@ -122,7 +122,7 @@ load: function(baseurl, pos, num, query_volatile, retry) this.loader = { starttime: new Date().getTime(), retry: retry }; var loaderinstance = this.name; window[loaderinstance] = this; - this.iframe.src = baseurl + "&pos=" + pos + "&num=" + num + '&itjs_call=parent.' + loaderinstance + '.dataReady&itjs_callid=' + ++this.callid; + this.iframe.src = baseurl + "&pos=" + pos + "&num=" + num + (query_volatile ? query_volatile : "") + '&itjs_call=parent.' + loaderinstance + '.dataReady&itjs_callid=' + ++this.callid; } } else |