Skip to content
This repository has been archived by the owner on Jan 25, 2024. It is now read-only.

Issue with Internet Explorer #83

Closed
littlephone opened this issue Sep 27, 2019 · 2 comments
Closed

Issue with Internet Explorer #83

littlephone opened this issue Sep 27, 2019 · 2 comments
Labels

Comments

@littlephone
Copy link

littlephone commented Sep 27, 2019

Internet Explorer 10+ generates error on line 445 to line 446:
xhr.responseType = 'text'; xhr.open('GET', url);
It is working fine if the above two lines were reversed:
xhr.open('GET', url); xhr.responseType = 'text';
Anyone has the same issue ?

@arte0s
Copy link

arte0s commented Oct 18, 2019

I had the same error in IE11 and just comment line 445:
//xhr.responseType = 'text';
Everything started to work fine...

@lucatacconi
Copy link
Contributor

Tested reversing order of lines xhr.open('GET', url); xhr.responseType = 'text';
It seems fixed on IE11. Thanks to @littlephone and https://github.com/mhaderman

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

4 participants