MediaWiki: Common.js: Difference between revisions
From The Lost Media Wiki
No edit summary |
No edit summary |
||
Line 22: | Line 22: | ||
$("html").css("overflow-y","scroll"); | $("html").css("overflow-y","scroll"); | ||
}); | }); | ||
$('.reloader').click(function(){ | $('.reloader').click(function(){ | ||
$("#reloadable").load(location.href+" #reloadable").fadeIn("fast"); | $("#reloadable").load(location.href+" #reloadable*").fadeIn("fast"); | ||
$.ajaxSetup({ cache: false }); | $.ajaxSetup({ cache: false }); | ||
}); | }); | ||
}); | }); |
Revision as of 09:34, 1 February 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");
$( "#reloader" ).load( location.href + " #reloadable" );
})
.mouseleave(function() {
$( this ).css("bottom","-350px");
$("html").css("overflow-y","scroll");
});
$('.reloader').click(function(){
$("#reloadable").load(location.href+" #reloadable*").fadeIn("fast");
$.ajaxSetup({ cache: false });
});
});