MediaWiki:VectorPlus.js

Revision as of 01:27, 23 February 2024 by Makko Oko (talk | contribs)
Jump to navigation Jump 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.
// Clone and move the "Tools" section to the right-navigation area
$(function(){
  // Clone the "Tools" section from the sidebar
  var $toolsMenu = $('#p-tb').clone();

  // Create a new "Tools" section in the right-navigation
  var $newToolsMenu = $('<div id="p-newtools" class="vector-menu-content"></div>');
  $newToolsMenu.append($toolsMenu.find('ul').html());
  $newToolsMenu.prepend('<h3 id="p-newtools-label" class="vector-menu-heading">Tools</h3>');

  // Insert the new "Tools" section in the right-navigation after #ca-history
  $newToolsMenu.insertAfter('#ca-history');

  // Remove the original "Tools" section from the sidebar
  $('#p-tb').remove();
});