better reporting of 500 ajax errors, issue 832, thanks Paolo Velleri

This commit is contained in:
mdipierro
2012-12-24 11:21:37 -06:00
parent 2d5f558b54
commit 6fc307cf7b
7 changed files with 25 additions and 1 deletions
@@ -50,6 +50,13 @@ function web2py_event_handlers() {
window.location = redirect;
};
});
doc.ajaxError(function(e, xhr, settings, exception) {
doc.off('click', '.flash')
switch(xhr.status){
case 500:
$('.flash').html(ajax_error_500).slideDown();
}
});
};
jQuery(function() {