Sostituito alert con toast in caso di problemi di rete. Migliorato messaggio di errore
This commit is contained in:
parent
d55705ce9c
commit
053d3c4803
1 changed files with 5 additions and 1 deletions
|
@ -781,7 +781,11 @@ function imgNotFound(img) {
|
||||||
|
|
||||||
function JSONErrorHandler(jqXHR, textStatus, errorThrown) {
|
function JSONErrorHandler(jqXHR, textStatus, errorThrown) {
|
||||||
if (!FONTE.ajaxError) {
|
if (!FONTE.ajaxError) {
|
||||||
alert('AAAAAAHHHH ' + textStatus);
|
var errMsg = "Err: ";
|
||||||
|
if(jqXHR.status === 404) {
|
||||||
|
errMsg += "Sito non raggiungibile. ";
|
||||||
|
}
|
||||||
|
toastr.error(errMsg);
|
||||||
FONTE.ajaxError = true;
|
FONTE.ajaxError = true;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue