Sostituito alert con toast in caso di problemi di rete. Migliorato messaggio di errore

This commit is contained in:
gine 2017-03-18 11:44:41 +01:00
parent d55705ce9c
commit 053d3c4803

View file

@ -781,7 +781,11 @@ function imgNotFound(img) {
function JSONErrorHandler(jqXHR, textStatus, errorThrown) {
if (!FONTE.ajaxError) {
alert('AAAAAAHHHH ' + textStatus);
var errMsg = "Err: ";
if(jqXHR.status === 404) {
errMsg += "Sito non raggiungibile. ";
}
toastr.error(errMsg);
FONTE.ajaxError = true;
}
};