mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-12-19 01:01:00 +00:00
bc81b04ecd
Modules loaded with packageFiles are always executed in module scope (with a closure), even in debug mode. The behaviour of non-packageFiles debug mode is the only reason files have closures. https://www.mediawiki.org/wiki/Manual:Coding_conventions/JavaScript#Closure Change-Id: I14ac680eb67d892618bbc13be9298ec9b8e0e2e9
14 lines
323 B
JavaScript
14 lines
323 B
JavaScript
/**
|
|
* Create a link element that opens the issues overlay.
|
|
*
|
|
* @internal
|
|
* @ignore
|
|
* @param {string} labelText The text value of the element
|
|
* @return {jQuery}
|
|
*/
|
|
function newPageIssueLink( labelText ) {
|
|
return $( '<a>' ).addClass( 'cleanup mw-mf-cleanup' ).text( labelText );
|
|
}
|
|
|
|
module.exports = newPageIssueLink;
|