MediaWiki: Common.js: Difference between revisions

From The Lost Media Wiki
Jump to: navigation, search
No edit summary
No edit summary
 
(188 intermediate revisions by 2 users not shown)
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. */
/*custom javascript for the lostmediawiki metrolook theme*/
/*change the title text by the Image */
var titleImage = '<img width="150" src="http://lostmediawiki.com/skins/Metrolook/images/nofilm.png" style="margin-top:-5px; margin-left:5px;">';
$(".title-name > a > .title-name").html(titleImage);
/*Change the title text by the Image ends*/
/*Replace the Home by blank space to display site title only on the main page*/
var str = $("title").text();
var title = str.split("-");
if(title[0].trim()=="Home"){
  $("title").text(title[1].trim());
}
/*Replace the Home by blank space to display site title only on the main page*/
/*custom javascript for the lostmediawiki metrolook theme ends here*/
$(document).ready(function() {
$("div.embedvideo").css("width", "100%").css("max-width","640px");
$("div.thumbinner").css("width", "100%").css("max-width","640px");
$(".thumbinner").children().width(100%);




$(document).ready(function() {
  $("a#ca-view, a#ca-edit, a#ca-formedit, a#ca-history").detach().insertBefore("a#ca-purge");
  $("#ca-views").remove();
  $("#ca-actions").html("<i class='fas fa-pencil-alt'></i><b class='caret'></b>");
  $("#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");
  $("#adslot4").detach().appendTo("#sidebar-left");
  $(".onload").toggle();
  $(".ib-icon").toggle();
  $('#searchInput').prop('placeholder','');
  $('#searchInput:focus').prop('placeholder','Search');
  $('.item:first-of-type').addClass('active');
  $('.ns-0 .mw-body-content table').wrap('<div class="responsive-table"></div>');
});
});

Latest revision as of 17:31, 24 May 2023

/* Any JavaScript here will be loaded for all users on every page load. */


$(document).ready(function() { 
  $("a#ca-view, a#ca-edit, a#ca-formedit, a#ca-history").detach().insertBefore("a#ca-purge");
  $("#ca-views").remove();
  $("#ca-actions").html("<i class='fas fa-pencil-alt'></i><b class='caret'></b>");
  $("#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");
  $("#adslot4").detach().appendTo("#sidebar-left");
  $(".onload").toggle();
  $(".ib-icon").toggle();
  $('#searchInput').prop('placeholder','');
  $('#searchInput:focus').prop('placeholder','Search');
  $('.item:first-of-type').addClass('active');
  $('.ns-0 .mw-body-content table').wrap('<div class="responsive-table"></div>');
});