Aggiunto metodo per le regole degli eventi ripetitivi
This commit is contained in:
parent
ee3c187585
commit
5ebd724d4a
1 changed files with 6 additions and 1 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,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) {
|
||||
|
|
Loading…
Reference in a new issue