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.
I would like to be able to bind to the progress event of the xhr upload.
for example (in plain javascript):
var xhr = new XMLHttpRequest();
xhr.upload.addEventListener("progress", uploadProgress, false)
(so I can show a progress meter for uploaded files)
I want to be able to do the same thing by doing $http.post...
for this and any other case edge case where you need to interact with the raw XHR object itself it might be nice to provide something that lets you just get at the original xhr object.