MediaWiki:Common.js

From The Lost Media Wiki
Jump to: navigation, 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.
/* Any JavaScript here will be loaded for all users on every page load. */


$(document).ready(function() { 
  $("a#ca-view, a#ca-edit, a#ca-formedit, a#ca-history").detach().insertBefore("a#ca-purge");
  $("#ca-views").remove();
  $("#ca-actions").html("<i class='fas fa-pencil-alt'></i><b class='caret'></b>");
  $("#sidebar-menu").detach().insertAfter("#searchform");
  $("#infobox").appendTo("#sidebar-right");
  $("#homelogo").appendTo("#sidebar-left");  
  $(window).resize(function() {
       $("#contentwrapper").css({"padding-top": $("#mw-navigation").height() + 20 });
  }).resize();
  $(".sidebar-right-wrapper").detach().prependTo("#contentwrapper");
  $("#commbutt").detach().appendTo("#sidebar-right");
  $("#adslot4").detach().appendTo("#sidebar-left");
  $(".onload").toggle();
  $(".ib-icon").toggle();
  $('#searchInput').prop('placeholder','');
  $('#searchInput:focus').prop('placeholder','Search');
  $('.item:first-of-type').addClass('active');
  $('.ns-0 .mw-body-content table').wrap('<div class="responsive-table"></div>');
});