MediaWiki:Vector.js: Difference between revisions

Jump to navigation Jump to search
(Created page with "→‎All JavaScript here will be loaded for users of the Vector skin: // Move the table of contents to the sidebar $(document).ready(function() { var $toc = $('#toc'); if ($toc.length) { var $newToc = $toc.clone(); $newToc.find('a').each(function() { $(this).attr('href', $(this).attr('href').replace(/^#/, '#toc_')); }); $newToc.attr('id', 'mw-panel'); $newToc.addClass('toc'); $newToc.find('h2').text('Co...")
 
No edit summary
Line 1: Line 1:
/* All JavaScript here will be loaded for users of the Vector skin */
/* All JavaScript here will be loaded for users of the Vector skin */
// Move the table of contents to the sidebar
$(document).ready(function() {
    var $toc = $('#toc');
    if ($toc.length) {
        var $newToc = $toc.clone();
        $newToc.find('a').each(function() {
            $(this).attr('href', $(this).attr('href').replace(/^#/, '#toc_'));
        });
        $newToc.attr('id', 'mw-panel');
        $newToc.addClass('toc');
        $newToc.find('h2').text('Contents');
        $toc.after($newToc);
        $toc.hide();
    }
});

Revision as of 00:39, 22 February 2024

/* All JavaScript here will be loaded for users of the Vector skin */