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
the XHR shim that is implemented in brackets-browser-livedev here relies on event listeners attached to the XHR object (onerror, onreadystatechanged, etc.). We need to deal with the case where addEventListener is used instead.
getAllResponseHeaders is not implemented for the XHR shim and it needs to be implemented so that we return relevant headers to the process of local fs XHR
The text was updated successfully, but these errors were encountered:
I think for getAllResponseHeaders we can just have a simple set of things we return, like Date, Content-Type, Content-Length, Server and that's probably enough?
I think solving this fully is a rabbit hole we should be careful we don't fall into. Let's deal with the common cases, which I'd argue are "whatever jquery does" and leave it at that.
This primarily involves two things:
onerror
,onreadystatechanged
, etc.). We need to deal with the case whereaddEventListener
is used instead.getAllResponseHeaders
is not implemented for the XHR shim and it needs to be implemented so that we return relevant headers to the process of local fs XHRThe text was updated successfully, but these errors were encountered: