Browse Source

Fixed incorrect size calculation of photos

Tobias Reich 10 years ago
parent
commit
e8a1c1ea30
2 changed files with 1 additions and 1 deletions
  1. 0 0
      dist/main.js
  2. 1 1
      src/scripts/photo.js

File diff suppressed because it is too large
+ 0 - 0
dist/main.js


+ 1 - 1
src/scripts/photo.js

@@ -566,7 +566,7 @@ photo.getSize = function() {
 	// Detect if the photo will be shown scaled,
 	// because the screen size is smaller than the photo
 	if (photo.json.width>view.width||
-		photo.json.width>view.height) scaled = true;
+		photo.json.height>view.height) scaled = true;
 
 	// Calculate pixel ratio of screen
 	if (pixelRatio!==undefined&&pixelRatio>1) {

Some files were not shown because too many files changed in this diff