4 lines
217 B
JavaScript
4 lines
217 B
JavaScript
CMS.ServerError = function(model, error) {
|
|
// this handler is for the client:server communication not the validation errors which handleValidationError catches
|
|
window.alert("Server Error: " + error.responseText);
|
|
}; |