Move xhr_error_message() into channel.js

(imported from commit c68c2d475b5673a3dd5f68c75624dfcfe56728ca)
This commit is contained in:
Steve Howell
2014-03-13 10:32:44 -04:00
committed by Leo Franchi
parent 0e129614cf
commit 3889edd824
4 changed files with 11 additions and 11 deletions

View File

@@ -204,15 +204,6 @@ exports.array_compare = function util_array_compare(a, b) {
return true;
};
exports.xhr_error_message = function (message, xhr) {
if (xhr.status.toString().charAt(0) === "4") {
// Only display the error response for 4XX, where we've crafted
// a nice response.
message += ": " + $.parseJSON(xhr.responseText).msg;
}
return message;
};
/* Represents a value that is expensive to compute and should be
* computed on demand and then cached. The value can be forcefully
* recalculated on the next call to get() by calling reset().