aboutsummaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
Diffstat (limited to 'static')
-rw-r--r--static/event-creator.ts2
-rw-r--r--static/globals.ts1
2 files changed, 2 insertions, 1 deletions
diff --git a/static/event-creator.ts b/static/event-creator.ts
index 74ba4235..97ffbd62 100644
--- a/static/event-creator.ts
+++ b/static/event-creator.ts
@@ -67,7 +67,7 @@ class EventCreator {
that.ev = new VEvent();
that.ev.setProperty('summary', 'Created Event');
that.ev.setProperty('uid', uuid())
- that.ev.calendar = btoa('Calendar');
+ that.ev.calendar = window.default_calendar;
// let ev_block = document.createElement('vevent-block') as ComponentBlock;
let ev_block = new ComponentBlock(that.ev.getProperty('uid'));
diff --git a/static/globals.ts b/static/globals.ts
index 7ccfb3d2..6b689697 100644
--- a/static/globals.ts
+++ b/static/globals.ts
@@ -15,6 +15,7 @@ declare global {
vcal_objects: Map<uid, VEvent>;
VIEW: 'month' | 'week';
EDIT_MODE: boolean;
+ default_calendar: string;
}
}
window.vcal_objects = vcal_objects;