potential fix for #1375: The preview image on the upload page is sometimes displayed at full size
This commit is contained in:
@@ -107,7 +107,7 @@
|
|||||||
|
|
||||||
Danbooru.Upload.initialize_image = function() {
|
Danbooru.Upload.initialize_image = function() {
|
||||||
var $image = $("#image");
|
var $image = $("#image");
|
||||||
if ($image.size() > 0) {
|
if ($image.length) {
|
||||||
var height = $image.height();
|
var height = $image.height();
|
||||||
var width = $image.width();
|
var width = $image.width();
|
||||||
if (height > 400) {
|
if (height > 400) {
|
||||||
@@ -128,6 +128,9 @@
|
|||||||
$("#scale").html("Scaled " + parseInt(100 * ratio) + "% (original: " + origin_width + "x" + origin_height + ")");
|
$("#scale").html("Scaled " + parseInt(100 * ratio) + "% (original: " + origin_width + "x" + origin_height + ")");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
} else if (!this.retried) {
|
||||||
|
this.retried = true;
|
||||||
|
window.setTimeout(Danbooru.Upload.initialize_image, 200);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user