MediaWiki: Common.js: Difference between revisions
From The Lost Media Wiki
m (1 revision imported) |
No edit summary |
||
Line 13: | Line 13: | ||
.mouseenter(function() { | .mouseenter(function() { | ||
$( this ).css("bottom","0"); | $( this ).css("bottom","0"); | ||
$("body").css(" | $("body").css("position","fixed"); | ||
}) | }) | ||
.mouseleave(function() { | .mouseleave(function() { | ||
$( this ).css("bottom","-350px"); | $( this ).css("bottom","-350px"); | ||
$("body").css(" | $("body").css("position","inherit"); | ||
}); | }); | ||
}); | }); |
Revision as of 09:39, 30 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");
$(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");
$("body").css("position","fixed");
})
.mouseleave(function() {
$( this ).css("bottom","-350px");
$("body").css("position","inherit");
});
});