MediaWiki:Gadget-contributions.js
Перейти до навігації
Перейти до пошуку
- Іншими мовами
Note: After saving, you have to bypass your browser's cache to see the changes.
Google Chrome, Firefox, Microsoft Edge, and Safari: Hold down the Shift key and click the Reload toolbar button.
For details and instructions about other browsers, see Wikipedia:Bypass your cache.
/**
* Додає посилання на внески на сторінці Користувач, Обговорення користувача та Внески як PortletLink
* @author Jr_Mime
*/
(function ($, mw) {
$( document ).ready(function() {
if (!mw.config.get('wgRelevantUserName')) return;
if (mw.config.get('wgNamespaceNumber') === 2 || mw.config.get('wgNamespaceNumber') === 3) {
mw.util.addPortletLink(
'p-namespaces',
mw.util.getUrl('Спеціальна:Внесок/' + mw.config.get('wgRelevantUserName')),
mw.msg('contributions'),
'ca-contributions',
mw.msg('tooltip-t-contributions')
);
}
});
})(jQuery, mediaWiki);