User:Bongolium500/common.js: Difference between revisions
From Jenny Everywhere Wiki
Bongolium500 (talk | contribs) No edit summary |
Bongolium500 (talk | contribs) No edit summary Tag: Reverted |
||
Line 5: | Line 5: | ||
var width = $(img).width(); | var width = $(img).width(); | ||
var height = $(img).height(); | var height = $(img).height(); | ||
$(obj).find(".thumbinner").append($("<div></div>").text("Click to view.").width(width).height(height).addClass("imagecover").click(function(event){ $(event.target).remove() })); | $(obj).find(".thumbinner").append($("<div></div>").text("Click to view.").width(width).height(height).addClass("imagecover").click(function(event){ $(event.target).remove(); $(obj).css("filter", "none"); })); | ||
}); | }); | ||
}); | }); |
Revision as of 19:12, 18 July 2024
mw.hook('wikipage.content').add(function(){
$('.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).addClass("imagecover").click(function(event){ $(event.target).remove(); $(obj).css("filter", "none"); }));
});
});