Compare commits

...

2 commits

2 changed files with 9 additions and 2 deletions

View file

@ -55,6 +55,11 @@ var ai1ec = (function(){
getGeo : function(event) {
return event.geo || "";
},
//Regole per gli evebti ripetitivi
getRule : function(event) {
return event.rrule || "";
},
};
var getXmlData = function(url, catId, callback) {

View file

@ -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;