From d076423b30d625ccb3cac33381fc88456ed6b0e0 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Tue, 17 May 2011 02:29:20 -0400 Subject: [PATCH] Align to bottom on skinny window. --- web/js/011-display.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/js/011-display.js b/web/js/011-display.js index aa1a7a1..3618d7e 100644 --- a/web/js/011-display.js +++ b/web/js/011-display.js @@ -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;