Gestione dell'errore sul load more in caso di mancanza di connessione. Fix #26

This commit is contained in:
gine 2017-03-26 20:02:26 +02:00
parent 5ebd724d4a
commit 76fdcf4952

View file

@ -308,6 +308,8 @@ function JSONErrorHandler(jqXHR, textStatus, errorThrown) {
var errMsg = "Err: ";
if(jqXHR.status === 404 ) {
errMsg += "Sito non raggiungibile. ";
} else if(jqXHR.status === 0) {
return checkConnection(jqXHR.status, "Occore essere connessi per poter ricevere altri articoli");
}
toastr.error(errMsg);
FONTE.ajaxError = true;