aboutsummaryrefslogtreecommitdiff
path: root/static/rrule.js
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2021-01-12 23:42:21 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2021-01-12 23:42:21 +0100
commite4c57ab3e9d63bac105c4748eac378de5d2478a3 (patch)
treeb85b8e2e19e57e800024a4097ca0fdd14c882a9f /static/rrule.js
parentCan create event with new interface. (diff)
downloadcalp-e4c57ab3e9d63bac105c4748eac378de5d2478a3.tar.gz
calp-e4c57ab3e9d63bac105c4748eac378de5d2478a3.tar.xz
Fix jcal->xcal rrule generation
Diffstat (limited to '')
-rw-r--r--static/rrule.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/static/rrule.js b/static/rrule.js
index f11cc640..67a4453f 100644
--- a/static/rrule.js
+++ b/static/rrule.js
@@ -59,6 +59,9 @@ class RRule {
this.listeners[field].push(proc);
}
+ /* NOTE this function is probably never used.
+ Deperate it and refer to RRule.asJcal
+ together with jcal_to_xcal */
asXcal(doc) {
/* TODO empty case */
// let str = "<recur>";
@@ -77,7 +80,7 @@ class RRule {
asJcal() {
let obj = {};
for (let f of this.fields) {
- let v = this.fields[f];
+ let v = this[f];
if (! v) continue;
/* TODO special formatting for some types */
obj[f] = v;