| [ Index ] |
PHP Cross Reference of MediaWiki-1.24.0 |
[Summary view] [Print] [Text view]
1 /** 2 * @class mw.plugin.notify 3 */ 4 ( function ( mw ) { 5 'use strict'; 6 7 /** 8 * @see mw.notification#notify 9 * @param message 10 * @param options 11 * @return {jQuery.Promise} 12 */ 13 mw.notify = function ( message, options ) { 14 // Don't bother loading the whole notification system if we never use it. 15 return mw.loader.using( 'mediawiki.notification' ) 16 .then( function () { 17 // Call notify with the notification the user requested of us. 18 return mw.notification.notify( message, options ); 19 } ); 20 }; 21 22 /** 23 * @class mw 24 * @mixins mw.plugin.notify 25 */ 26 27 }( mediaWiki ) );
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Fri Nov 28 14:03:12 2014 | Cross-referenced by PHPXref 0.7.1 |