Browse Source

Don't show exif info when empty for older Lychee users (#194)

Tobias Reich 10 years ago
parent
commit
0a5285ee93
3 changed files with 5 additions and 2 deletions
  1. 5 2
      assets/js/build.js
  2. 0 0
      assets/min/main.js
  3. 0 0
      assets/min/view.js

+ 5 - 2
assets/js/build.js

@@ -302,7 +302,8 @@ build = {
 			public,
 			public,
 			editTitleHTML,
 			editTitleHTML,
 			editDescriptionHTML,
 			editDescriptionHTML,
-			infos;
+			infos,
+			exifHash = "";
 
 
 		infobox += "<div class='header'><h1>About</h1><a class='icon-remove-sign'></a></div>";
 		infobox += "<div class='header'><h1>About</h1><a class='icon-remove-sign'></a></div>";
 		infobox += "<div class='wrapper'>";
 		infobox += "<div class='wrapper'>";
@@ -337,7 +338,9 @@ build = {
 			["Tags", build.tags(photoJSON.tags, forView)]
 			["Tags", build.tags(photoJSON.tags, forView)]
 		];
 		];
 
 
-		if ((photoJSON.takestamp+photoJSON.make+photoJSON.model+photoJSON.shutter+photoJSON.aperture+photoJSON.focal+photoJSON.iso)!="0") {
+		exifHash = photoJSON.takestamp+photoJSON.make+photoJSON.model+photoJSON.shutter+photoJSON.aperture+photoJSON.focal+photoJSON.iso;
+
+		if (exifHash!="0"&&exifHash!=="null") {
 
 
 			infos = infos.concat([
 			infos = infos.concat([
 				["", "Camera"],
 				["", "Camera"],

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


File diff suppressed because it is too large
+ 0 - 0
assets/min/view.js


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