Browse Source

Added with Credentials option to the config file

pull/223/head
ommar 10 years ago
parent
commit
9252fade22
  1. 4
      papaparse.js

4
papaparse.js

@ -521,6 +521,10 @@ @@ -521,6 +521,10 @@
xhr = new XMLHttpRequest();
if (this._config.withCredentials)
{
xhr.withCredentials = this._config.withCredentials;
}
if (!IS_WORKER)
{
xhr.onload = bindFunction(this._chunkLoaded, this);

Loading…
Cancel
Save