update components

This commit is contained in:
Luke Pulverenti 2016-03-02 12:05:35 -05:00
parent 5ca7a2ad34
commit a08bf4ec89
12 changed files with 25 additions and 26 deletions

View file

@ -8055,7 +8055,6 @@ var XhrLoader = function () {
this.timeout = timeout;
this.maxRetry = maxRetry;
this.retryDelay = retryDelay;
this.timeoutHandle = window.setTimeout(this.loadtimeout.bind(this), timeout);
this.loadInternal();
}
}, {
@ -8082,6 +8081,7 @@ var XhrLoader = function () {
if (this.xhrSetup) {
this.xhrSetup(xhr, this.url);
}
this.timeoutHandle = window.setTimeout(this.loadtimeout.bind(this), this.timeout);
xhr.send();
}
}, {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long