aboutsummaryrefslogtreecommitdiff
path: root/static/vevent.ts
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2021-11-10 01:40:22 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2021-11-10 01:40:22 +0100
commit410404cfdd54c083b6609fd52334e02d320145d7 (patch)
treeac934bde696f099590496d23bdd636f691f4c637 /static/vevent.ts
parentBasic event modification works again. (diff)
downloadcalp-410404cfdd54c083b6609fd52334e02d320145d7.tar.gz
calp-410404cfdd54c083b6609fd52334e02d320145d7.tar.xz
Re-modularize javascript.
This moves almost everything out of globals.ts, into sepparate files. Things are still slightly to tightly coupled. But that is worked on.
Diffstat (limited to 'static/vevent.ts')
-rw-r--r--static/vevent.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/static/vevent.ts b/static/vevent.ts
index d8ef58ce..ddabb507 100644
--- a/static/vevent.ts
+++ b/static/vevent.ts
@@ -1,5 +1,5 @@
-import { ical_type, valid_input_types, JCal, JCalProperty } from './types'
-import { uid, parseDate } from './lib'
+import { uid, ical_type, valid_input_types, JCal, JCalProperty } from './types'
+import { parseDate } from './lib'
export { VEvent, xml_to_vcal }