MediaWiki:Common.js

From Artifacts of Capitalism
Revision as of 23:54, 14 July 2025 by Abrano (talk | contribs)

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)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
// Move the “Artifact types” dropdown out of the header and into the real sidebar
$( function () {
  // grab the header dropdown
  var $artifact = $( '.p-Artifact-types-dropdown' );
  if ( $artifact.length ) {
    // move it into #mw-panel (the left sidebar)
    $( '#mw-panel' ).append( $artifact );
    // optional: if you want it at the very top of the sidebar
    // $( '#mw-panel' ).prepend( $artifact );
  }
} );