mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-14 11:15:33 +00:00
7c24aa46fb
Bug: T320101 Change-Id: I6d536af034dafd66c6478183de8029be9ed3e8b7
27 lines
941 B
JavaScript
27 lines
941 B
JavaScript
/**
|
|
* Upgrades Echo for icon consistency.
|
|
* Undos work inside Echo to replace our button.
|
|
*/
|
|
function init() {
|
|
if ( document.querySelectorAll( '#pt-notifications-alert a, #pt-notifications-notice a' ).length !== 2 ) {
|
|
return;
|
|
}
|
|
|
|
// @ts-ignore
|
|
mw.hook( 'ext.echo.NotificationBadgeWidget.onInitialize' ).add( function ( badge ) {
|
|
var $element = badge.$element;
|
|
$element.addClass( 'mw-list-item' );
|
|
|
|
var iconButtonClasses = 'mw-ui-button mw-ui-quiet mw-ui-icon mw-ui-icon-element ';
|
|
if ( $element.attr( 'id' ) === 'pt-notifications-alert' ) {
|
|
$element.children( 'a' ).addClass( iconButtonClasses + 'mw-ui-icon-bell' );
|
|
$element.children( 'a' ).removeClass( 'oo-ui-icon-bell' );
|
|
}
|
|
if ( $element.attr( 'id' ) === 'pt-notifications-notice' ) {
|
|
$element.children( 'a' ).addClass( iconButtonClasses + 'mw-ui-icon-tray' );
|
|
$element.children( 'a' ).removeClass( 'oo-ui-icon-tray' );
|
|
}
|
|
} );
|
|
}
|
|
module.exports = init;
|