1
0
mirror of https://github.com/aclindsa/moneygo.git synced 2025-07-01 12:08:37 -04:00

Fix ajax error handling

This commit is contained in:
2017-01-09 21:22:13 -05:00
parent 871aa88ea6
commit c6cf817b2c
5 changed files with 16 additions and 16 deletions

View File

@ -13,7 +13,7 @@ function serverError(error) {
function ajaxError(error) {
var e = new Error();
e.ErrorId = 5;
e.ErrorString = "Request Failed: " + status + error;
e.ErrorString = "Request Failed: " + error;
return {
type: ErrorConstants.ERROR_AJAX,