aboutsummaryrefslogtreecommitdiff
path: root/static/vevent.ts
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2021-10-06 04:32:11 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2021-10-06 04:32:11 +0200
commit4f499ccbf71d0ae662159515bb568826e72678a5 (patch)
treea0300638045095aa6da1b0d6a275cf1c7e2333f4 /static/vevent.ts
parentFix issue with datetimes not getting set. (diff)
downloadcalp-4f499ccbf71d0ae662159515bb568826e72678a5.tar.gz
calp-4f499ccbf71d0ae662159515bb568826e72678a5.tar.xz
Drive popup tabs through javascript.
Diffstat (limited to 'static/vevent.ts')
-rw-r--r--static/vevent.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/static/vevent.ts b/static/vevent.ts
index 9d6cec88..ade5d222 100644
--- a/static/vevent.ts
+++ b/static/vevent.ts
@@ -77,6 +77,10 @@ class VEvent {
return e.value;
}
+ get boundProperties(): IterableIterator<string> {
+ return this.properties.keys()
+ }
+
setProperty(key: string, value: any) {
let e = this.properties.get(key);
if (!e) {