MediaWiki:Gadget-contributions.js

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
 1 /**
 2  * Adds a contribution link on User, User talk and Contributions as a PortletLink
 3  * @author Jr_Mime
 4  */
 5 
 6 if (mw.config.get('wgNamespaceNumber') === 2 || mw.config.get('wgNamespaceNumber') === 3) {
 7 	$(function () {
 8 		mw.util.addPortletLink(
 9 			'p-namespaces',
10 			mw.util.getUrl('Special:Contributions/' + mw.config.get('wgRelevantUserName')),
11 			'Contributions',
12 			'ca-nstab-contributions',
13 			'Click to open the user\'s contributions'
14 		);
15 	});
16 }