MediaWiki: Common.js: Difference between revisions

From The Lost Media Wiki
Jump to: navigation, search
No edit summary
No edit summary
Line 20: Line 20:
/*custom javascript for the lostmediawiki metrolook theme ends here*/
/*custom javascript for the lostmediawiki metrolook theme ends here*/


var $selector = $(".embedvideo .thumbinner iframe");
setToWindowHeight($selector);
$("div.embedvideo").resize(function (){
  setToWindowHeight($selector);
});


$("div.embedvideo").css("width", "100%");
$("div.embedvideo").css("width", "100%");
Line 33: Line 25:
$(".embedvideo .thumbinner iframe").css("width", "100%");
$(".embedvideo .thumbinner iframe").css("width", "100%");


var wide = $(".embedvideo .thumbinner iframe").css("width");
 
$(document).ready(function() {
 
var wide = $(".embedvideo .thumbinner").css("width");
var calculate = parseInt(wide, 10)* 0.75;
var calculate = parseInt(wide, 10)* 0.75;


$(".embedvideo .thumbinner iframe").css("height", calculate);
$(".embedvideo .thumbinner iframe").css("height", calculate);
$(document).ready(function() {
$("#catlinks").detach().insertBefore("div.hf-footer");
$("#catlinks").detach().insertBefore("div.hf-footer");


});
});

Revision as of 09:31, 19 December 2017

/* 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*/


$("div.embedvideo").css("width", "100%");
$(".embedvideo .thumbinner").css("width", "100%");
$(".embedvideo .thumbinner iframe").css("width", "100%");


$(document).ready(function() {

var wide = $(".embedvideo .thumbinner").css("width");
var calculate = parseInt(wide, 10)* 0.75;

$(".embedvideo .thumbinner iframe").css("height", calculate);
$("#catlinks").detach().insertBefore("div.hf-footer");

});