Note:
The Notification Box appears at the bottom right corner of the browser and displays important information to the user.
The namespace for this class is jetpack.notifications
.
Methods
show(titlestring, [body as string] iconstring)Draws a notification box.
titleThe head of the notification message.string
bodyThe message itself.stringfalse
iconThe URL of an .ico file.string
jetpack.notifications.show("hello world");
var myBody = " My first message body on Jetpack";
var myIcon = "https://www.mozilla.com/favicon.ico";
jetpack.notifications.show({title: "My first message on jetpack", body: myBody, icon: myIcon});
Document Tags and Contributors
Last updated by:
fscholz,