Added with Credentials option to the config file
@ -532,6 +532,10 @@
xhr = new XMLHttpRequest();
if (this._config.withCredentials)
{
xhr.withCredentials = this._config.withCredentials;
}
if (!IS_WORKER)
xhr.onload = bindFunction(this._chunkLoaded, this);