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. */
$("li#ca-history").unwrap();
$("#ca-views").remove();
$("#ca-actions").html("<i class='fa fa-pencil'></i><b class='caret'></b>");
$("li#ca-view").detach().insertBefore("li#ca-purge");
$("li#ca-edit").detach().insertBefore("li#ca-purge");
$("li#ca-formedit").detach().insertBefore("li#ca-purge");
$("li#ca-history").detach().insertBefore("li#ca-purge");
$("a:contains('MediaWiki spam')").parent().css("display","none");
$(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();
$(".ib-icon").toggle();
$('#searchInput').prop('placeholder','');
$('#searchInput:focus').prop('placeholder','Search');
$('.item:first-of-type').addClass('active');
scrollHTumbs();
});
function scrollHTumbs() {
var $item = $('.announce.row');
var $width = $('.bodyContent').width();
$('.handle-right').click(function(){
if($item.position().left > $width * 0.5){
$item.animate({'left':'+=196px'});
}
});
$('.handle-left').click(function(){
$item.animate({'left':'-=196px'});
});
}