MediaWiki:Common.js
From The Lost Media Wiki
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() {
$("#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");
$(".onload").toggle();
$( "div#shout" )
.mouseenter(function() {
$( this ).css("bottom","0");
$("html").css("overflow-y","hidden");
})
.mouseleave(function() {
$( this ).css("bottom","-350px");
$("html").css("overflow-y","scroll");
});
$(".reloader").click(function() {
$("div.reloadable:nth-of-type(2)").unwrap();
$(".reloadable").load(location.href + " .reloadable");
});
});