mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-12-04 10:39:08 +00:00
9 lines
340 B
JavaScript
9 lines
340 B
JavaScript
|
// This initialises EventLogging for main menu and some prominent links in the UI.
|
||
|
// This code should only be loaded on the Minerva skin, it does not apply to other skins.
|
||
|
// @deprecated and to be removed the moment that T220016 is live.
|
||
|
var mainMenu = require( './menu.js' );
|
||
|
|
||
|
module.exports = function () {
|
||
|
mainMenu.enableLogging();
|
||
|
};
|