MediaWiki: Common.js: Difference between revisions

From The Lost Media Wiki
Jump to: navigation, search
No edit summary
No edit summary
Line 1: Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
/* Any JavaScript here will be loaded for all users on every page load. */
$("a#ca-view").unwrap().html("<i class='fa fa-eye'></i>");
$("a#ca-view").unwrap().html("<i class='fa fa-eye'></i>");
$("a#ca-edit").html("<i class='fa fa-edit'></i>");
$("a#ca-edit").unwrap().html("<i class='fa fa-edit'></i>");
$("a#ca-history").html("<i class='fa fa-history'></i>");
$("a#ca-history").unwrap().html("<i class='fa fa-history'></i>");


$("#ca-views").remove();
$("#ca-views").remove();

Revision as of 17:41, 8 May 2018

/* Any JavaScript here will be loaded for all users on every page load. */
$("a#ca-view").unwrap().html("<i class='fa fa-eye'></i>");
$("a#ca-edit").unwrap().html("<i class='fa fa-edit'></i>");
$("a#ca-history").unwrap().html("<i class='fa fa-history'></i>");

$("#ca-views").remove();

$("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();
  $( "div#shout" )
    .mouseenter(function() {
      $( this ).css("bottom","0");
      $("html").css("overflow-y","hidden");
    })
    .mouseleave(function() {
      $( this ).css("bottom","-350px");
      $("html").css("overflow-y","scroll");
    });
 });