react-s3-uploader
Advanced tools
Comparing version 4.1.0 to 4.1.1
##### 4.1.1 | ||
* Fix INVALID_STATE_ERR on Safari 5 [#118] | ||
##### 4.1.0 | ||
@@ -3,0 +7,0 @@ |
{ | ||
"name": "react-s3-uploader", | ||
"version": "4.1.0", | ||
"version": "4.1.1", | ||
"description": "React component that renders a file input and automatically uploads to an S3 bucket", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -63,6 +63,6 @@ /** | ||
if (xhr.withCredentials != null) { | ||
xhr.open(method, url, true); | ||
if (opts.withCredentials != null) { | ||
xhr.withCredentials = opts.withCredentials; | ||
} | ||
xhr.open(method, url, true); | ||
} | ||
@@ -69,0 +69,0 @@ else if (typeof XDomainRequest !== "undefined") { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
23780