mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-16 18:58:45 +00:00
72df451bd3
Help with readability by using module.exports and require rather than the MobileFrontend provided mw.mobileFrontend module manager (and avoid adopting webpack at this time) Replace usages of mw.mobileFrontend.require with local require and module.exports (compatible with RL or Node implementation) Changes: * Notifications modules are merged into skins.minerva.scripts and initialised via a client side check. * new file overlayManager for exporting an overlayManager singleton rather than being hidden inside resources/skins.minerva.scripts/init.js * All M.define/M.requires swapped out for require where possible The `define` method is now forbidden in the repo. Bug: T212944 Change-Id: I44790dd3fc6fe42bb502d79c39c4081c223bf2b1
15 lines
297 B
JavaScript
15 lines
297 B
JavaScript
( function () {
|
|
/**
|
|
* Creates a "read more" button with given text.
|
|
* @param {string} msg
|
|
* @return {JQuery}
|
|
*/
|
|
function newPageIssueLearnMoreLink( msg ) {
|
|
return $( '<span>' )
|
|
.addClass( 'ambox-learn-more' )
|
|
.text( msg );
|
|
}
|
|
|
|
module.exports = newPageIssueLearnMoreLink;
|
|
}() );
|