Align to bottom on skinny window.

master
Jason A. Donenfeld 2011-05-17 02:29:20 -04:00
parent 8131adcd41
commit d076423b30
1 changed files with 2 additions and 2 deletions

View File

@ -135,9 +135,9 @@ $(document).ready(function() {
$(window).bind("resize", scaleImage);
var container = $("#photo-view");
if (image.css("width") != "100%" && container.height() * image.width() / image.height() > container.width())
image.css("width", "100%").css("height", "auto");
image.css("width", "100%").css("height", "auto").css("position", "absolute").css("bottom", 0);
else if (image.css("height") != "100%")
image.css("height", "100%").css("width", "auto");
image.css("height", "100%").css("width", "auto").css("position", "").css("bottom", "");
}
function showPhoto() {
var maxSize = 800;