User:Bongolium500/common.js: Difference between revisions

From Jenny Everywhere Wiki
No edit summary
No edit summary
Line 1: Line 1:
console.log("Executing");
mw.hook('wikipage.content').add(function(){
$('.blur-image').each(function(i, obj) {
console.log("Executing");
console.log("in loop");
$('.blur-image').each(function(i, obj) {
var img = $(obj).find(".thumbimage");
console.log("in loop");
var width = $(img).width();
var img = $(obj).find(".thumbimage");
var height = $(img).height();
var width = $(img).width();
    $(obj).find(".thumbinner").append($("<div></div>").text("Click to view .").width(width).height(height).css("color":"white", "background-color":"black"));
var height = $(img).height();
    $(obj).find(".thumbinner").append($("<div></div>").text("Click to view.").width(width).height(height).css("color":"white", "background-color":"black"));
});
});
});

Revision as of 17:49, 18 July 2024

mw.hook('wikipage.content').add(function(){
	console.log("Executing");
	$('.blur-image').each(function(i, obj) {
		console.log("in loop");
		var img = $(obj).find(".thumbimage");
		var width = $(img).width();
		var height = $(img).height();
	    $(obj).find(".thumbinner").append($("<div></div>").text("Click to view.").width(width).height(height).css("color":"white", "background-color":"black"));
	});
});