diff options
| author | ivar <i@oiee.no> | 2025-12-07 22:42:14 +0100 |
|---|---|---|
| committer | ivar <i@oiee.no> | 2025-12-07 22:42:14 +0100 |
| commit | 13e0a6edb530a86acc56441980f6ed4d9fbf2022 (patch) | |
| tree | eead1100cb714341ef1527f3b3e7b8909dcfbe3b /code/api/wwwroot/scripts/components/dialog.js | |
| parent | 681192e93d96c34928d1d8a8b62bff3a0c860992 (diff) | |
| download | storage-13e0a6edb530a86acc56441980f6ed4d9fbf2022.tar.xz storage-13e0a6edb530a86acc56441980f6ed4d9fbf2022.zip | |
Diffstat (limited to 'code/api/wwwroot/scripts/components/dialog.js')
| -rw-r--r-- | code/api/wwwroot/scripts/components/dialog.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/code/api/wwwroot/scripts/components/dialog.js b/code/api/wwwroot/scripts/components/dialog.js new file mode 100644 index 0000000..06fdfea --- /dev/null +++ b/code/api/wwwroot/scripts/components/dialog.js @@ -0,0 +1,8 @@ +class Dialog extends HTMLElement { + constructor() { + super(); + } +} + + +customElements.define("x-dialog", Dialog, {extends: "dialog"}); |
