Add V keyboard shortcut for toggling original/sample size

This commit is contained in:
Toks
2014-06-09 16:35:16 -04:00
parent 1f98d84831
commit 89d8c01da2
3 changed files with 33 additions and 5 deletions

View File

@@ -304,19 +304,45 @@
$("#image-resize-link").click(function(e) {
var $link = $(e.target);
var $image = $("#image");
var $notice = $("#image-resize-notice");
$image.attr("src", $link.attr("href"));
$image.css("opacity", "0.25");
$image.width($image.data("original-width"));
$image.height($image.data("original-height"));
$image.on("load", function() {
$image.css("opacity", "1");
$("#image-resize-notice").hide();
$notice.hide();
});
$("#image-resize-notice").html("Loading...");
$notice.children().eq(0).hide();
$notice.children().eq(1).show(); // Loading message
Danbooru.Note.Box.scale_all();
$image.data("scale_factor", 1);
e.preventDefault();
});
if ($("#image-resize-notice").length && Danbooru.meta("enable-js-navigation") === "true") {
$(document).bind("keypress", "v", function(e) {
if ($("#image-resize-notice").is(":visible")) {
$("#image-resize-link").click();
} else {
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();
}
});
}
}
Danbooru.Post.initialize_post_image_resize_to_window_link = function() {

View File

@@ -59,8 +59,9 @@
</div>
<% end %>
<% if post.has_large? && CurrentUser.default_image_size == "large" %>
<div class="ui-corner-all ui-state-highlight notice notice-resized" id="image-resize-notice">
Resized to <%= number_to_percentage post.resize_percentage.floor, :precision => 0 %> of original (<%= link_to "view original", post.file_url, :id => "image-resize-link" %>)
<% if post.has_large? %>
<div class="ui-corner-all ui-state-highlight notice notice-resized" id="image-resize-notice" style="<%= CurrentUser.default_image_size == "original" ? "display: none;" : "" %>">
<span>Resized to <%= number_to_percentage post.resize_percentage.floor, :precision => 0 %> of original (<%= link_to "view original", post.file_url, :id => "image-resize-link" %>)</span>
<span style="display: none;">Loading...</span>
</div>
<% end %>

View File

@@ -29,6 +29,7 @@
<li><kbd class="key">d</kbd> Next post</li>
<li><kbd class="key">f</kbd> Favorite post</li>
<li><kbd class="key">r</kbd> Go to random post</li>
<li><kbd class="key">v</kbd> Toggle between sample and full size</li>
</ul>
</section>
</div>