From daf21d866373a5159a3af590b0203cb444ffde36 Mon Sep 17 00:00:00 2001 From: gine Date: Sat, 18 Mar 2017 11:54:19 +0100 Subject: [PATCH] Sostituiti tutti gli alert con dei toast. Fix #13 --- www/js/main.js | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/www/js/main.js b/www/js/main.js index 61e0ce8..aa8b01b 100644 --- a/www/js/main.js +++ b/www/js/main.js @@ -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; } }; \ No newline at end of file