Gestione dell'errore sul load more in caso di mancanza di connessione. Fix #26
This commit is contained in:
parent
5ebd724d4a
commit
76fdcf4952
1 changed files with 3 additions and 1 deletions
|
@ -306,8 +306,10 @@ function JSONErrorHandler(jqXHR, textStatus, errorThrown) {
|
|||
$.mobile.loading('hide');
|
||||
if (!FONTE.ajaxError) {
|
||||
var errMsg = "Err: ";
|
||||
if(jqXHR.status === 404) {
|
||||
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;
|
||||
|
|
Loading…
Reference in a new issue