You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 25, 2024. It is now read-only.
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 ?
The text was updated successfully, but these errors were encountered:
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
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 ?
The text was updated successfully, but these errors were encountered: