MediaWiki:Gadget-editCount.js: Difference between revisions
Jump to navigation
Jump to search
Content added Content deleted
No edit summary Tag: Manual revert |
No edit summary |
||
Line 1: | Line 1: | ||
"use strict"; |
|||
/** |
/** |
||
* Adds total edit count on User, User talk and Contributions as a PortletLink |
* Adds total edit count on User, User talk and Contributions as a PortletLink |
||
Line 5: | Line 7: | ||
if (mw.config.get('wgNamespaceNumber') === 2 || mw.config.get('wgNamespaceNumber') === 3 || mw.config.get("wgCanonicalSpecialPageName") == "Contributions") { |
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'); |
|||
mw.util.addPortletLink( |
|||
⚫ | |||
'p-namespaces', |
|||
⚫ | |||
mw.util.getUrl('Special:EditCount/' + user), |
|||
⚫ | |||
'.. edits', |
|||
$("#ca-nstab-editcount").css("display", "none"); |
|||
⚫ | |||
'Click to open the user\'s full editcount' |
|||
⚫ | |||
); |
|||
⚫ | |||
} |
|||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
$("#ca-nstab-editcount").css("display","none"); |
|||
⚫ | |||
⚫ | |||
⚫ | |||
} |
|||
⚫ | |||
⚫ | |||
} |
} |
Latest revision as of 12:06, 20 October 2024
"use strict";
/**
* 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');
}
});
});
}