Jump to content

User:OSborn/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.
/*WP:TWINKLE*/
importScript('User:AzaToth/twinkle.js');

TwinkleConfig = {
        userTalkPageMode                :       'tab',
        markAIVReportAsMinor            :       false,
        markSpeedyPagesAsMinor          :       false,
        orphanBacklinksOnSpeedyDelete   :       {orphan:true, exclude:['g6']}
};
/*end TW*/

/*TW extensions*/
importScript('Wikipedia:WikiProject User scripts/Scripts/Add LI menu');
importStylesheet('Wikipedia:WikiProject User scripts/Scripts/Add LI menu/css');
/*importScript('Wikipedia:WikiProject Deletion sorting/delsort.js');*/
/*end TW ext*/
importScript('User:Fox Wilson/delsort.js'); // Deletion sorting script [[WP:FWDS]]

/*
$(function () {
    var tabs = document.getElementById('p-cactions').cloneNode(true);
    tabs.id = 'mytabs';
    var listitems = tabs.getElementsByTagName('LI');
    for (i=0;i<listitems.length;i++) {
        if(listitems[i].id) listitems[i].id = 'mytabs-' + listitems[i].id;
    }

    content = document.getElementById("content");    // Find the content div
    content.parentNode.insertBefore(tabs, content.nextSibling);    // Place tab list right after content div
});
*/