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 was archived by the owner on Apr 12, 2024. It is now read-only.
functioncreateXhr(method){// IE8 doesn't support PATCH method, but the ActiveX object does/* global ActiveXObject */return(msie<=8&&lowercase(method)==='patch')
? newActiveXObject('Microsoft.XMLHTTP')
: newwindow.XMLHttpRequest();}
in IE8 on GET (and other) requests this returns a new window.XMLHttpRequest() which at least in my case throws a "typeerror: object expected" exception. Shouldn't this always return the ActiveXObject where < IE8 is concerned?