Files
edx-platform/cms/static/js/views/server_error.js
2013-05-08 09:29:20 -04:00

5 lines
218 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);
};