diff options
Diffstat (limited to 'notif')
| -rw-r--r-- | notif/example.ts | 3 |
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"); |
