Skip to content

Commit

Permalink
fixes #3331
Browse files Browse the repository at this point in the history
  • Loading branch information
r888888888 committed Oct 11, 2017
1 parent 1855ff8 commit facb351
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion app/assets/javascripts/posts.js
Expand Up @@ -368,7 +368,21 @@
if ($("#image-resize-notice").is(":visible")) {
$("#image-resize-link").click();
} else {
Danbooru.Post.expand_image(e);
var $image = $("#image");
var $notice = $("#image-resize-notice");
$image.attr("src", $("#image-container").data("large-file-url"));
$image.css("opacity", "0.25");
$image.width($image.data("large-width"));
$image.height($image.data("large-height"));
$notice.children().eq(0).show();
$notice.children().eq(1).hide(); // Loading message
$image.on("load", function() {
$image.css("opacity", "1");
$notice.show();
});
Danbooru.Note.Box.scale_all();
$image.data("scale-factor", 1);
e.preventDefault();
}
});
}
Expand Down

0 comments on commit facb351

Please sign in to comment.