MediaWiki: Common.js: Difference between revisions
From The Lost Media Wiki
No edit summary |
No edit summary |
||
Line 23: | Line 23: | ||
$(".reloader").click(function() { | $(".reloader").click(function() { | ||
$.get(location.href).then(function(page) { | $.get(location.href).then(function(page) { | ||
$("#reloadable"). | $("#reloadable").load(location.href + " #reloadable") | ||
}); | }); | ||
}); | }); | ||
}); | }); |
Revision as of 02:05, 31 January 2018
/* 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() {
$.get(location.href).then(function(page) {
$("#reloadable").load(location.href + " #reloadable")
});
});
});