Anonymous

MediaWiki:Gadget-BlurImages.js: Difference between revisions

From Jenny Everywhere Wiki
no edit summary
No edit summary
No edit summary
Line 5: Line 5:
var height = $(img).height();
var height = $(img).height();
var text = "Click to view. Contains " + $(obj).data("contains") + ".";
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){  
    $(obj).find(".thumbinner").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();
Line 20: Line 20:
var width = $(img).width();
var width = $(img).width();
var height = $(img).height();
var height = $(img).height();
    $(obj).find("div").append($("<div></div>").text(text).width(width).height(height).addClass("imagecover").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).parent().find("img").css("filter", "none");
    $(event.target).remove();
    $(event.target).remove();
12,457

edits