aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2024-09-15 13:27:26 +0700
committerShulhan <ms@kilabit.info>2024-09-15 13:27:26 +0700
commit3463fea5c0744f680a53ecc6f077447c8b43a0b1 (patch)
treefea44af812e4e405e115d340d9bf9a2caf072441
parentb1de224b6e28ddeeeeaa90d576f0630c89480ae4 (diff)
downloadpakakeh.ts-3463fea5c0744f680a53ecc6f077447c8b43a0b1.tar.xz
notif: update example message for notification
-rw-r--r--notif/example.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/notif/example.ts b/notif/example.ts
index b2ff5d7..50c1c10 100644
--- a/notif/example.ts
+++ b/notif/example.ts
@@ -15,7 +15,8 @@ function main() {
inputMsg = document.createElement("textarea") as HTMLTextAreaElement;
inputMsg.id = "input_msg";
- inputMsg.value = `Hello world, this is a notification with HTML format using <b>bold</b> and <u>underline</u> words.`;
+ inputMsg.value =
+ "Test notification with HTML format using <b>bold</b> and <u>underline</u> words.";
document.body.appendChild(inputMsg);
const elWrapper = document.createElement("div");