mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 15:27:32 +09:00
16 lines
265 B
HTML
16 lines
265 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head><meta charset=utf-8>
|
||
|
|
<title>Create a notification</title>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<script>
|
||
|
|
|
||
|
|
var notification = new Notification("This is a title", {
|
||
|
|
body: "This is a notification body",
|
||
|
|
tag: "sometag",
|
||
|
|
});
|
||
|
|
|
||
|
|
</script>
|
||
|
|
</body>
|
||
|
|
</html>
|