summaryrefslogtreecommitdiff
path: root/resources/src/mediawiki/mediawiki.notify.js
blob: 0f3a08677452e019347a87fbc755bb82508e8684 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/**
 * @class mw.plugin.notify
 */
( function ( mw ) {
	'use strict';

	/**
	 * @see mw.notification#notify
	 * @see mw.notification#defaults
	 * @param {HTMLElement|HTMLElement[]|jQuery|mw.Message|string} message
	 * @param {Object} options See mw.notification#defaults for details.
	 * @return {jQuery.Promise}
	 */
	mw.notify = function ( message, options ) {
		// Don't bother loading the whole notification system if we never use it.
		return mw.loader.using( 'mediawiki.notification' )
			.then( function () {
				// Call notify with the notification the user requested of us.
				return mw.notification.notify( message, options );
			} );
	};

	/**
	 * @class mw
	 * @mixins mw.plugin.notify
	 */

}( mediaWiki ) );