Properly report AJAX errors

This commit is contained in:
2017-01-10 06:08:26 -05:00
parent 6e34a72c22
commit bea8be18ff
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,