Sostituiti tutti gli alert con dei toast. Fix #13
This commit is contained in:
parent
053d3c4803
commit
daf21d8663
1 changed files with 16 additions and 10 deletions
|
@ -45,7 +45,7 @@ function ultimoAggiornamento() {
|
|||
$("#boxdata").css("display", "block");
|
||||
}
|
||||
} else {
|
||||
alert('ERRORE, manca la data del tuo ultimo aggiornamento. Aggiorna al più presto.');
|
||||
toastr.warning('Warn: manca la data del tuo ultimo aggiornamento. Aggiorna al più presto.');
|
||||
}
|
||||
};
|
||||
var paginacorrente = "";
|
||||
|
@ -509,7 +509,7 @@ function cercaMe() {
|
|||
, error: JSONErrorHandler
|
||||
});
|
||||
} else {
|
||||
alert('ERR_NOUPDATE');
|
||||
toastr.error('Err: ERR_NOUPDATE');
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -571,7 +571,7 @@ function getSinglePageRecur(url, category, pagenum) {
|
|||
if (pagenum == totalPages || totalPages == 0) FONTE.updatedCategoriesCount += 1;
|
||||
FONTE.neededPostsCount += data.length;
|
||||
if (FONTE.updatedCategoriesCount >= FONTE.categoriesList.length && FONTE.neededPostsCount == 0) {
|
||||
alert('Nessun nuovo articolo.');
|
||||
toastr.info('Nessun nuovo articolo.');
|
||||
|
||||
var date = new Date();
|
||||
var currentUpdate = date.getFullYear() + '-' + ('0' + (date.getMonth() + 1)).slice(-2) + '-' + ('0' + date.getDate()).slice(-2);
|
||||
|
@ -606,7 +606,8 @@ function getSinglePageRecur(url, category, pagenum) {
|
|||
window.localStorage.setItem('db_update_date', currentUpdate);
|
||||
window.localStorage.setItem('db_lastnews_date', lastUpdate);
|
||||
|
||||
alert('Aggiornati ' + FONTE.updatedPostsCount + ' articoli.');
|
||||
toastr.info('Aggiornati ' + FONTE.updatedPostsCount + ' articoli.');
|
||||
|
||||
//feedback
|
||||
$("#aggiorna").attr("src", "./image/aggiorna.png");
|
||||
ultimoAggiornamento();
|
||||
|
@ -614,7 +615,7 @@ function getSinglePageRecur(url, category, pagenum) {
|
|||
}, function (error) {
|
||||
FONTE.updatedPostsCount += 1;
|
||||
if (FONTE.updatedCategoriesCount >= FONTE.categoriesList.length && FONTE.updatedPostsCount >= FONTE.neededPostsCount) {
|
||||
alert('Aggiornati ' + FONTE.updatedPostsCount + ' articoli.');
|
||||
toastr.info('Aggiornati ' + FONTE.updatedPostsCount + ' articoli.');
|
||||
//feedback
|
||||
$("#aggiorna").attr("src", "./image/aggiorna.png");
|
||||
}
|
||||
|
@ -795,7 +796,8 @@ function cerca() {
|
|||
cercaMe();
|
||||
return true;
|
||||
} else {
|
||||
alert('ERR_CERCA');
|
||||
toastr.error('Err: ERR_CERCA');
|
||||
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
@ -804,7 +806,8 @@ function segnalaBug() {
|
|||
if (checkConnection())
|
||||
return true;
|
||||
else {
|
||||
alert('ERR_SEGNALA');
|
||||
toastr.error('Err: ERR_SEGNALA');
|
||||
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
@ -814,7 +817,8 @@ function mostraEsperto() {
|
|||
myJsonPage(2167, '#espertotitle', '#mostraesperto');
|
||||
return true;
|
||||
} else {
|
||||
alert('ERR_ESPERTO');
|
||||
toastr.error('Err: ERR_ESPERTO');
|
||||
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
@ -824,7 +828,8 @@ function checkAndUpdate() {
|
|||
update();
|
||||
return true;
|
||||
} else {
|
||||
alert('ERR_UPDATE');
|
||||
toastr.error('Err: ERR_UPDATE');
|
||||
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
@ -834,7 +839,8 @@ function checkAndReset() {
|
|||
resetAndUpdate();
|
||||
return true;
|
||||
} else {
|
||||
alert('ERR_RESET');
|
||||
toastr.error('Err: ERR_RESET');
|
||||
|
||||
return false;
|
||||
}
|
||||
};
|
Loading…
Reference in a new issue