mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-14 19:28:31 +00:00
27 lines
595 B
JavaScript
27 lines
595 B
JavaScript
|
( function ( mw ) {
|
||
|
/**
|
||
|
* Notification list
|
||
|
*
|
||
|
* @class
|
||
|
* @mixins OO.EventEmitter
|
||
|
* @mixins mw.echo.dm.List
|
||
|
*
|
||
|
* @constructor
|
||
|
* @param {Object} [config] Configuration object
|
||
|
*/
|
||
|
mw.echo.dm.NotificationList = function MwEchoDmNotificationList() {
|
||
|
|
||
|
// Mixin constructor
|
||
|
OO.EventEmitter.call( this );
|
||
|
|
||
|
// Mixin constructor
|
||
|
mw.echo.dm.List.call( this );
|
||
|
};
|
||
|
|
||
|
/* Initialization */
|
||
|
|
||
|
OO.initClass( mw.echo.dm.NotificationList );
|
||
|
OO.mixinClass( mw.echo.dm.NotificationList, OO.EventEmitter );
|
||
|
OO.mixinClass( mw.echo.dm.NotificationList, mw.echo.dm.List );
|
||
|
} )( mediaWiki );
|