Files
danbooru/app/assets/javascripts/uploads.js
2011-08-22 16:28:31 -04:00

14 lines
356 B
JavaScript

$(function() {
var img = $("#image-preview img");
if (img) {
var height = img.attr("height");
var width = img.attr("width");
if (height > 400) {
var ratio = 400.0 / height;
img.attr("height", height * ratio);
img.attr("width", width * ratio);
$("#scale").html("Scaled " + parseInt(100 * ratio) + "%");
}
}
});