Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Regression: Fix styling on Special:Notifications
addModuleStyles ignores JavaScript in module.

Change-Id: I6c20a6ff05fbd52d30dea7d7633fb6f4b36b377b
  • Loading branch information
jdlrobson committed Aug 6, 2014
1 parent cb1375c commit 0dc45e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion special/SpecialNotifications.php
Expand Up @@ -125,7 +125,7 @@ public function execute( $par ) {
);
// For no-js support
global $wgExtensionAssetsPath;
$out->addExtensionStyle( "$wgExtensionAssetsPath/Echo/modules/base/ext.echo.base.css" );
$out->addModuleStyles( "ext.echo.base" );
// Mark items as read
if ( $unread ) {
MWEchoNotifUser::newFromUser( $user )->markRead( $unread );
Expand Down

0 comments on commit 0dc45e6

Please sign in to comment.