User:TheMcr/monobook.js

Boobpedia - Encyclopedia of big boobs
Jump to navigationJump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.

alert("Custom JavaScript loaded!");


mw.loader.using('ext.wikiEditor').then(function() {
    if ($('#wpTextbox1').length) {
        $('#wpTextbox1').wikiEditor('addToToolbar', {
            section: 'main',
            group: 'format',
            tools: {
                customButton: {
                    label: 'Insert Hello World',
                    type: 'button',
                    icon: '//upload.wikimedia.org/wikipedia/commons/6/64/Icon_example.svg',
                    action: {
                        type: 'replace',
                        options: {
                            pre: 'Hello, world!',
                        }
                    }
                }
            }
        });
    }
});


$(document).ready(function() {
    $("table.sortable").each(function() {
        mw.libs.sorttable.makeSortable(this);
    });
});


if (mw.config.get('wgPageName') === 'Main_Page') {
    alert('Welcome to the Main Page!');
}