summaryrefslogtreecommitdiff
path: root/notif/example.html
diff options
context:
space:
mode:
Diffstat (limited to 'notif/example.html')
-rw-r--r--notif/example.html51
1 files changed, 0 insertions, 51 deletions
diff --git a/notif/example.html b/notif/example.html
deleted file mode 100644
index b1211b0..0000000
--- a/notif/example.html
+++ /dev/null
@@ -1,51 +0,0 @@
-<!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 onload="main()">
- <p class="empty">Empty spaces.</p>
- <textarea id="input_msg"></textarea>
- <button onclick="notifInfo()">Info</button>
- <button onclick="notifError()">Error</button
- <p></p>
- <script>
- var exports = {}
- let inputMsg = document.getElementById("input_msg")
- let wuiNotif = null
- </script>
- <script src="notif.js"></script>
- <script>
- function main() {
- wuiNotif = new WuiNotif()
- inputMsg.value = `Hello world, this is a notification with HTML format using <b>bold</b> and <u>underline</u> words.`
-
- let previewError = document.createElement("div")
- previewError.classList.add(`${WUI_NOTIF_CLASS_ERROR}`)
- previewError.innerText = `Preview of error style`;
- document.body.appendChild(previewError)
-
- let previewInfo = document.createElement("div")
- previewInfo.classList.add(`${WUI_NOTIF_CLASS_INFO}`)
- previewInfo.innerText = `Preview of info style`;
- document.body.appendChild(previewInfo)
- }
- function notifInfo() {
- wuiNotif.Info(inputMsg.value)
- }
- function notifError() {
- wuiNotif.Error(inputMsg.value)
- }
- </script>
- </body>
-</html>