mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-16 18:58:45 +00:00
1b9ec30472
Bug: T264376 Change-Id: I569e7dd5eae888de42f81f3973a23fb832b2c942
40 lines
1.2 KiB
JavaScript
40 lines
1.2 KiB
JavaScript
/**
|
|
* This setups the Minerva skin.
|
|
* It should run without errors even if MobileFrontend is not installed.
|
|
*/
|
|
var ms = require( 'mobile.startup' );
|
|
|
|
function init() {
|
|
var permissions = mw.config.get( 'wgMinervaPermissions' ) || {},
|
|
// eslint-disable-next-line no-jquery/no-global-selector
|
|
$watch = $( '#page-actions-watch' );
|
|
|
|
if ( permissions.watch && !mw.user.isAnon() ) {
|
|
require( './watchstar.js' ).init( $watch );
|
|
}
|
|
|
|
// Setup Minerva with MobileFrontend
|
|
if ( ms && !ms.stub ) {
|
|
require( './initMobile.js' )();
|
|
} else {
|
|
// MOBILEFRONTEND IS NOT INSTALLED.
|
|
// setup search for desktop Minerva at mobile resolution without MobileFrontend.
|
|
require( './searchSuggestReveal.js' )();
|
|
}
|
|
mw.hook( 'util.addPortletLink' ).add( require( './addPortletLink.js' ) );
|
|
|
|
// This hot fix should be reviewed and possibly removed circa January 2021.
|
|
// It's assumed that Apple will prioritize fixing this bug in one of its next releases.
|
|
// See T264376.
|
|
if ( navigator.userAgent.match( /OS 14_[0-9]/ ) ) {
|
|
document.body.classList.add( 'hotfix-T264376' );
|
|
}
|
|
}
|
|
|
|
init();
|
|
|
|
module.exports = {
|
|
// Version number allows breaking changes to be detected by other extensions
|
|
VERSION: 1
|
|
};
|