Important changes to Tiny Cloud pricing > Find out more

tinymce.NotificationManager

This class handles the creation of TinyMCE's notifications.

Examples

// Opens a new notification of type "error" with text "An error occurred."
tinymce.activeEditor.notificationManager.open({
   text: 'An error occurred.',
   type: 'error'
});

Methods

name summary defined by
close() Closes the top most notification. tinymce.NotificationManager
getNotifications() Returns the currently opened notification objects. tinymce.NotificationManager
open() Opens a new notification. tinymce.NotificationManager

Methods

close

close()

Closes the top most notification.

getNotifications

getNotifications():Array

Returns the currently opened notification objects.

Return value
  • Array - Array of the currently opened notifications.

open

open(args:Object)

Opens a new notification.

Parameters
  • args (Object) - Optional name/value settings collection contains things like timeout/color/message etc.

Can't find what you're looking for? Let us know.

Except as otherwise noted, the content of this page is licensed under the Creative Commons BY-NC-SA 3.0 License, and code samples are licensed under the Apache 2.0 License.