diff options
| author | Shulhan <ms@kilabit.info> | 2021-09-05 22:46:05 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2021-09-05 22:46:05 +0700 |
| commit | e3da79cf1adfb6dc2d9fed2e982bcde7fe7a7161 (patch) | |
| tree | 74b71ed9f9c3b58d93269a9cda32729a9c679d2a /notif/index.html | |
| parent | 903561a9074da0632e1e001db3879cc45f974493 (diff) | |
| download | pakakeh.ts-e3da79cf1adfb6dc2d9fed2e982bcde7fe7a7161.tar.xz | |
notif: convert the example using TypeScript and load it with type="module"
Diffstat (limited to 'notif/index.html')
| -rw-r--r-- | notif/index.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/notif/index.html b/notif/index.html new file mode 100644 index 0000000..ca9a307 --- /dev/null +++ b/notif/index.html @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="UTF-8" /> + <title>WUI - notif</title> + <style> + #input_msg { + width: calc(100% - 1em); + height: 4em; + } + .empty { + height: 100vh; + } + </style> + </head> + <body> + <p class="empty">Empty spaces.</p> + <script type="module" src="/notif/example.js"></script> + </body> +</html> |
