Jump to content

User:Blurpeace/monobook.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.
importScript('User:Tim Song/spihelper.js');
importScript('User:Mr.Z-man/patrollinks.js');

// Deleted edits link in toolbox
addOnloadHook(function () {
    if ( mw.config.get('wgCanonicalNamespace') == "Special" )
        return;  // don't display link for special pages
 
    url = mw.config.get('wgServer') + "/w/index.php?title=Special:Undelete/" + encodeURIComponent(mw.config.get('wgPageName'));
 
    mw.util.addPortletLink("p-tb", url, "Deleted edits", "pt-undelete");
});