aboutsummaryrefslogtreecommitdiff
path: root/static/elements.ts
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2021-11-19 16:45:06 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2021-11-19 16:45:06 +0100
commit3bd26b63adf49ec1b3f52897008738f13b864451 (patch)
treeb8b0d7a6eca1c209558a5f350bd281c2c2a01028 /static/elements.ts
parentAdd input-list custom element. (diff)
downloadcalp-3bd26b63adf49ec1b3f52897008738f13b864451.tar.gz
calp-3bd26b63adf49ec1b3f52897008738f13b864451.tar.xz
Add basic rrule tab.
Diffstat (limited to 'static/elements.ts')
-rw-r--r--static/elements.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/static/elements.ts b/static/elements.ts
index 720f8abb..db834fd9 100644
--- a/static/elements.ts
+++ b/static/elements.ts
@@ -6,6 +6,7 @@ import { DateTimeInput } from './components/date-time-input'
import { PopupElement } from './components/popup-element'
import { TabElement } from './components/tab-element'
import { InputList } from './components/input-list'
+import { EditRRule } from './components/edit-rrule'
export { initialize_components }
@@ -19,6 +20,7 @@ function initialize_components() {
customElements.define('vevent-edit', ComponentEdit);
customElements.define('vevent-dl', VEventDL);
customElements.define('vevent-block', ComponentBlock);
+ customElements.define('vevent-edit-rrule', EditRRule);
/* date-time-input should be instansiatable any time, but we do it here
becouse why not */