MediaWiki:Gadget-editCount.js

From RuneRealm Wiki

This is an old revision of this page, as edited by Alex (talk | contribs) at 01:39, 13 October 2024 (Created page with "→‎* * Adds total edit count on User, User talk and Contributions as a PortletLink * @author Jr_Mime: if (mw.config.get('wgNamespaceNumber') === 2 || mw.config.get('wgNamespaceNumber') === 3 || mw.config.get("wgCanonicalSpecialPageName") == "Contributions") { $(function () { var user = mw.config.get('wgRelevantUserName'); mw.util.addPortletLink( 'p-namespaces', mw.util.getUrl('Special:EditCount/' + user), '.. edits', 'ca-nstab-editcount', 'Click..."). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

After saving, you may need to bypass your browser's cache to see the changes. For further information, see Wikipedia:Bypass your cache.

  • In most Windows and Linux browsers: Hold down Ctrl and press F5.
  • In Safari: Hold down ⇧ Shift and click the Reload button.
  • In Chrome and Firefox for Mac: Hold down both ⌘ Cmd+⇧ Shift and press R.
/**
 * Adds total edit count on User, User talk and Contributions as a PortletLink
 * @author Jr_Mime
 */

if (mw.config.get('wgNamespaceNumber') === 2 || mw.config.get('wgNamespaceNumber') === 3 || mw.config.get("wgCanonicalSpecialPageName") == "Contributions") {
	$(function () {
		var user = mw.config.get('wgRelevantUserName');
		mw.util.addPortletLink(
			'p-namespaces',
			mw.util.getUrl('Special:EditCount/' + user),
			'.. edits',
			'ca-nstab-editcount',
			'Click to open the user\'s full editcount'
		);
		
		$.post("/w/Special:EditCount/" + user).done(function (data) {
			var edits_total_element = $(data).find("#editcount > table > tbody > tr:nth-child(2) > td:nth-child(2) > table > tbody > tr:last-child > td:nth-child(2)");
			if (!edits_total_element.length) {
				$("#ca-nstab-editcount").css("display","none");
				return;
			} else {
				$("#ca-nstab-editcount > a").text(edits_total_element.text() + ' edits');
			}
		});
	});
}