MediaWiki:Gadget-contributions.js: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
| Line 4: | Line 4: | ||
*/ | */ | ||
(function ($, mw, | (function ($, mw, gs) { | ||
if (mw.config.get('wgNamespaceNumber') === 2 || mw.config.get('wgNamespaceNumber') === 3) { | if (mw.config.get('wgNamespaceNumber') === 2 || mw.config.get('wgNamespaceNumber') === 3) { | ||
mw.util.addPortletLink( | mw.util.addPortletLink( | ||
Revision as of 19:59, 7 March 2020
/**
* Adds a contribution link on User, User talk and Contributions as a PortletLink
* @author Banri
*/
(function ($, mw, gs) {
if (mw.config.get('wgNamespaceNumber') === 2 || mw.config.get('wgNamespaceNumber') === 3) {
mw.util.addPortletLink(
'p-namespaces',
mw.util.getUrl('Special:Contributions/' + mw.config.get('wgRelevantUserName')),
'Contributions',
'ca-nstab-contributions',
'Click to open the user\'s contributions'
);
}
})(jQuery, mediaWiki, gswiki);