User:Bongolium500/common.js: Difference between revisions
From Jenny Everywhere Wiki
Bongolium500 (talk | contribs) No edit summary |
Bongolium500 (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
mw.hook('wikipage.content').add(function(){ | mw.hook('wikipage.content').add(function(){ | ||
$('. | $('.hide-image').each(function(i, obj) { | ||
console.log("in loop"); | console.log("in loop"); | ||
var img = $(obj).find(".thumbimage"); | var img = $(obj).find(".thumbimage"); | ||
var width = $(img).width(); | var width = $(img).width(); | ||
var height = $(img).height(); | var height = $(img).height(); | ||
$(obj).find(".thumbinner").append($("<div></div>").text( | var text = "Click to view. Contains " + $(obj).data("contains") + "."; | ||
$(obj).find(".thumbinner").append($("<div></div>").text(text).width(width).height(height).addClass("imagecover").click(function(event){ | |||
$(event.target).parent().find("img").css("filter", "none"); | $(event.target).parent().find("img").css("filter", "none"); | ||
$(event.target).remove(); | $(event.target).remove(); |
Revision as of 11:27, 19 July 2024
mw.hook('wikipage.content').add(function(){
$('.hide-image').each(function(i, obj) {
console.log("in loop");
var img = $(obj).find(".thumbimage");
var width = $(img).width();
var height = $(img).height();
var text = "Click to view. Contains " + $(obj).data("contains") + ".";
$(obj).find(".thumbinner").append($("<div></div>").text(text).width(width).height(height).addClass("imagecover").click(function(event){
$(event.target).parent().find("img").css("filter", "none");
$(event.target).remove();
}));
});
});