User:Gmt2001/afcslink.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.
mw.loader.using(new Array('mediawiki.util', 'mediawiki.Title', 'mediawiki.Uri'), function() {
( function ( mw, $ ) {
$( document ).ready( function () {
var conf, title, url;
// Costomize/Translate this to your needs
conf = {
pageName: 'WP:AFC/S',
portletLabel: 'AFC/S',
portletTooltip: 'Go to Wikipedia:WikiProject Articles for creation/Submissions',
};
// Don't alter the code below
title = new mw.Title( conf.pageName );
url = new mw.Uri( title.getUrl() );
mw.util.addPortletLink(
'p-personal',
url,
conf.portletLabel,
'pt-myuaalink',
conf.portletTooltip,
null,
'#pt-preferences'
);
});
}( mediaWiki, jQuery ) );
});