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
angular file upload is success and error callbacks are not working.
Possible issue and work around -> angular createHttpBackEnd function is updated.
xhr.onreadystatechange replaced with xhr.onload, but angular-file-upload-shim.js
uses
if (xhr.onreadystatechange) xhr.onreadystatechange();
I have replaced
if (xhr.onload) xhr.onload();
The text was updated successfully, but these errors were encountered:
angular file upload is success and error callbacks are not working.
Possible issue and work around -> angular createHttpBackEnd function is updated.
xhr.onreadystatechange replaced with xhr.onload, but angular-file-upload-shim.js
uses
if (xhr.onreadystatechange) xhr.onreadystatechange();
I have replaced
if (xhr.onload) xhr.onload();
The text was updated successfully, but these errors were encountered: