Tech, Administrators
12,457
edits
Bongolium500 (talk | contribs) No edit summary |
Bongolium500 (talk | contribs) No edit summary |
||
Line 11: | Line 11: | ||
}); | }); | ||
}); | }); | ||
mw.hook('wikipage.content').add(function(){ | mw.hook('wikipage.content').add(function(){ | ||
Line 21: | Line 20: | ||
var height = $(img).height(); | var height = $(img).height(); | ||
$(obj).find("div").append($("<div></div>").text(text).width(width).height(height).addClass("imagecover").prop("title", "Click image to view").click(function(event){ | $(obj).find("div").append($("<div></div>").text(text).width(width).height(height).addClass("imagecover").prop("title", "Click image to view").click(function(event){ | ||
$(event.target).parent().find("img").css("filter", "none"); | |||
$(event.target).remove(); | |||
})); | |||
}); | |||
}); | |||
}); | |||
mw.hook('wikipage.content').add(function(){ | |||
$('.pi-theme-blur').each(function(i, box) { | |||
var text = "Click to view. May contain " + "NSFW content" + "."; | |||
$(box).find(".pi-image").each(function(i, obj) { | |||
var img = $(obj).find("img"); | |||
var width = $(img).width(); | |||
var height = $(img).height(); | |||
$(obj).append($("<div></div>").text(text).width(width).height(height).addClass("imagecover").prop("title", "Click image to view").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(); |