package js.html
extends EventTarget
Available on js
The Notification interface of the Notifications API is used to configure and display desktop notifications to the user.
Documentation Notification by Mozilla Contributors, licensed under CC-BY-SA 2.5.
See also:
staticread onlypermission:NotificationPermissionA string representing the current permission to display notifications. Possible values are:
denied — The user refuses to have notifications displayed. granted — The user accepts having notifications displayed. default — The user choice is unknown and therefore the browser will act as if the value were denied.
new(title:String, ?options:Null<NotificationOptions>)Throws:
null |
DOMError |
|---|
read onlybody:StringThe body string of the notification as specified in the constructor's options parameter.
read onlydata:DynamicReturns a structured clone of the notification’s data.
read onlydir:NotificationDirectionThe text direction of the notification as specified in the constructor's options parameter.
read onlyicon:StringThe URL of the image used as an icon of the notification as specified in the constructor's options parameter.
read onlylang:StringThe language code of the notification as specified in the constructor's options parameter.
onclick:FunctionA handler for the click event. It is triggered each time the user clicks on the notification.
onclose:FunctionA handler for the close event. It is triggered when the user closes the notification.
onerror:FunctionA handler for the error event. It is triggered each time the notification encounters an error.
onshow:FunctionA handler for the show event. It is triggered when the notification is displayed.
read onlytag:StringThe ID of the notification (if any) as specified in the constructor's options parameter.
read onlytitle:StringThe title of the notification as specified in the first parameter of the constructor.
close():VoidProgrammatically closes a notification.
© 2005–2020 Haxe Foundation
Licensed under a MIT license.
https://api.haxe.org/js/html/Notification.html