aboutsummaryrefslogtreecommitdiff
path: root/static/vevent.ts
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2021-11-15 00:47:37 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2021-11-15 00:47:37 +0100
commitb0170d8cbb14a05d791ae5560c6e15da3fabfd7a (patch)
treeb5a869663352d0abcd07a397239b97da92a49323 /static/vevent.ts
parentRework some drawing and how calendar is accessed. (diff)
downloadcalp-b0170d8cbb14a05d791ae5560c6e15da3fabfd7a.tar.gz
calp-b0170d8cbb14a05d791ae5560c6e15da3fabfd7a.tar.xz
cleanup
Diffstat (limited to 'static/vevent.ts')
-rw-r--r--static/vevent.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/static/vevent.ts b/static/vevent.ts
index 4f47f8e3..307c572f 100644
--- a/static/vevent.ts
+++ b/static/vevent.ts
@@ -236,7 +236,8 @@ function xml_to_vcal(xml: Element): VEvent {
let property_map = new Map()
if (properties) {
- property_loop: for (var i = 0; i < properties.childElementCount; i++) {
+ property_loop:
+ for (var i = 0; i < properties.childElementCount; i++) {
let tag = properties.childNodes[i];
if (!(tag instanceof Element)) continue;
let parameters = {};