Compare commits
No commits in common. "76fdcf4952656f7a5e4c8aeae62fdd979e31e653" and "ee3c187585a8154fa57d01bd0cc471f4145af89e" have entirely different histories.
76fdcf4952
...
ee3c187585
2 changed files with 2 additions and 9 deletions
|
@ -12,7 +12,7 @@ var ai1ec = (function(){
|
|||
endChar = uid.indexOf('@');
|
||||
|
||||
return uid.substr(initChar+1, uid.length - uid.substr(endChar -1).length - initChar );
|
||||
};
|
||||
};
|
||||
|
||||
//Parser di un evento dell'array tornato da getXmlData
|
||||
API.event = {
|
||||
|
@ -55,11 +55,6 @@ 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) {
|
||||
|
|
|
@ -306,10 +306,8 @@ 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;
|
||||
|
|
Loading…
Reference in a new issue