Tech, Administrators
12,450
edits
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(){ | ||
$('.blur-image').each(function(i, obj) { | $('.blur-image').each(function(i, obj) { | ||
console.log("in loop"); | console.log("in loop"); | ||
Line 6: | 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")); | $(obj).find(".thumbinner").append($("<div></div>").text("Click to view.").width(width).height(height).addClass("imagecover").click(function(event){ $(event.target).remove() })); | ||
}); | }); | ||
}); | }); |