Jump to content

User:Ilmari Karonen/deletionlog.js

From Wikipedia, the free encyclopedia
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
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.
// DELETION LOG LINK: <pre><nowiki>

$(function () {
    if (mw.config.get('wgNamespaceNumber') < 0) return;  // no link for special pages
    mw.util.addPortletLink('p-tb', mw.config.get('wgServer')+mw.config.get('wgScriptPath')+'/index.php?title=Special:Log&type=delete&page='+encodeURIComponent(mw.config.get('wgPageName')),
                   'Deletion log', 't-deletionlog', 'Show the deletion log for this page');
});

// </nowiki></pre>