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");
|
$("#boxdata").css("display", "block");
|
||||||
}
|
}
|
||||||
} else {
|
} 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 = "";
|
var paginacorrente = "";
|
||||||
|
@ -509,7 +509,7 @@ function cercaMe() {
|
||||||
, error: JSONErrorHandler
|
, error: JSONErrorHandler
|
||||||
});
|
});
|
||||||
} else {
|
} 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;
|
if (pagenum == totalPages || totalPages == 0) FONTE.updatedCategoriesCount += 1;
|
||||||
FONTE.neededPostsCount += data.length;
|
FONTE.neededPostsCount += data.length;
|
||||||
if (FONTE.updatedCategoriesCount >= FONTE.categoriesList.length && FONTE.neededPostsCount == 0) {
|
if (FONTE.updatedCategoriesCount >= FONTE.categoriesList.length && FONTE.neededPostsCount == 0) {
|
||||||
alert('Nessun nuovo articolo.');
|
toastr.info('Nessun nuovo articolo.');
|
||||||
|
|
||||||
var date = new Date();
|
var date = new Date();
|
||||||
var currentUpdate = date.getFullYear() + '-' + ('0' + (date.getMonth() + 1)).slice(-2) + '-' + ('0' + date.getDate()).slice(-2);
|
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_update_date', currentUpdate);
|
||||||
window.localStorage.setItem('db_lastnews_date', lastUpdate);
|
window.localStorage.setItem('db_lastnews_date', lastUpdate);
|
||||||
|
|
||||||
alert('Aggiornati ' + FONTE.updatedPostsCount + ' articoli.');
|
toastr.info('Aggiornati ' + FONTE.updatedPostsCount + ' articoli.');
|
||||||
|
|
||||||
//feedback
|
//feedback
|
||||||
$("#aggiorna").attr("src", "./image/aggiorna.png");
|
$("#aggiorna").attr("src", "./image/aggiorna.png");
|
||||||
ultimoAggiornamento();
|
ultimoAggiornamento();
|
||||||
|
@ -614,7 +615,7 @@ function getSinglePageRecur(url, category, pagenum) {
|
||||||
}, function (error) {
|
}, function (error) {
|
||||||
FONTE.updatedPostsCount += 1;
|
FONTE.updatedPostsCount += 1;
|
||||||
if (FONTE.updatedCategoriesCount >= FONTE.categoriesList.length && FONTE.updatedPostsCount >= FONTE.neededPostsCount) {
|
if (FONTE.updatedCategoriesCount >= FONTE.categoriesList.length && FONTE.updatedPostsCount >= FONTE.neededPostsCount) {
|
||||||
alert('Aggiornati ' + FONTE.updatedPostsCount + ' articoli.');
|
toastr.info('Aggiornati ' + FONTE.updatedPostsCount + ' articoli.');
|
||||||
//feedback
|
//feedback
|
||||||
$("#aggiorna").attr("src", "./image/aggiorna.png");
|
$("#aggiorna").attr("src", "./image/aggiorna.png");
|
||||||
}
|
}
|
||||||
|
@ -795,7 +796,8 @@ function cerca() {
|
||||||
cercaMe();
|
cercaMe();
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
alert('ERR_CERCA');
|
toastr.error('Err: ERR_CERCA');
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -804,7 +806,8 @@ function segnalaBug() {
|
||||||
if (checkConnection())
|
if (checkConnection())
|
||||||
return true;
|
return true;
|
||||||
else {
|
else {
|
||||||
alert('ERR_SEGNALA');
|
toastr.error('Err: ERR_SEGNALA');
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -814,7 +817,8 @@ function mostraEsperto() {
|
||||||
myJsonPage(2167, '#espertotitle', '#mostraesperto');
|
myJsonPage(2167, '#espertotitle', '#mostraesperto');
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
alert('ERR_ESPERTO');
|
toastr.error('Err: ERR_ESPERTO');
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -824,7 +828,8 @@ function checkAndUpdate() {
|
||||||
update();
|
update();
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
alert('ERR_UPDATE');
|
toastr.error('Err: ERR_UPDATE');
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -834,7 +839,8 @@ function checkAndReset() {
|
||||||
resetAndUpdate();
|
resetAndUpdate();
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
alert('ERR_RESET');
|
toastr.error('Err: ERR_RESET');
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
Loading…
Reference in a new issue