mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-24 07:54:13 +00:00
Fix missing doublecheck icon on Special:Notifications on mobile
Bug: T146706 Change-Id: I918beabb1bcbe4a66c4252a795d379e2ff6591a9
This commit is contained in:
parent
aa700a75e5
commit
ed613f2e26
|
@ -193,7 +193,12 @@ class SpecialNotifications extends SpecialPage {
|
|||
$out->addModules( array( 'ext.echo.special' ) );
|
||||
|
||||
// For no-js support
|
||||
$out->addModuleStyles( array( 'ext.echo.styles.notifications', 'ext.echo.styles.special' ) );
|
||||
$out->addModuleStyles( array(
|
||||
'ext.echo.styles.notifications',
|
||||
'ext.echo.styles.special',
|
||||
// We already load badgeicons in the BeforePageDisplay hook, but not for minerva
|
||||
'ext.echo.badgeicons'
|
||||
) );
|
||||
|
||||
// Log visit
|
||||
MWEchoEventLogging::logSpecialPageVisit( $user, $out->getSkin()->getSkinName() );
|
||||
|
|
Loading…
Reference in a new issue