From c6c6a2e8086449d40ad4f8034685e9d53d78e082 Mon Sep 17 00:00:00 2001 From: Tobias Reich Date: Thu, 25 Oct 2012 22:48:38 +0200 Subject: [PATCH] Bugfix: Image position wasn't always right --- js/view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 js/view.js diff --git a/js/view.js b/js/view.js old mode 100644 new mode 100755 index 198cf43..c3d9112 --- a/js/view.js +++ b/js/view.js @@ -83,7 +83,7 @@ function loadPhotoInfo(photoID) { headerTitle.html(data.title); image_view.attr("data-id", photoID); - if (isPhotoSmall(data)) image_view.html("").append("
"); + if (isPhotoSmall(data)) image_view.html("").append("
"); else image_view.html("").append("
"); image_view.removeClass("fadeOut").addClass("fadeIn").show();