Jump to content

User:Nihlus/toolboxlink.js

From Wikipedia, the free encyclopedia
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.
/* This script adds a link to a subpage toolbox, i.e. Special:Mypage/Toolbox to the top toolbar

importScript('User:Nihlus/toolboxlink.js'); // Linkback: [[User:Nihlus/toolboxlink.js]]

*/
 
$.when( mw.loader.using( ['mediawiki.util'] ), $.ready ).done( function() {
  mw.util.addPortletLink(
    'p-personal',
    mw.util.getUrl( 'Special:Mypage/Toolbox' ),
    'Toolbox',
    'pt-mytoolbox',
    'Go to toolbox',
    null,
    '#pt-preferences'
  );
});