Browse Source

Only first item of album preview should be a retina image

Tobias Reich 10 years ago
parent
commit
abc7c9233d
4 changed files with 7 additions and 8 deletions
  1. 6 7
      assets/js/build.js
  2. 1 1
      assets/js/view.js
  3. 0 0
      assets/min/main.js
  4. 0 0
      assets/min/view.js

+ 6 - 7
assets/js/build.js

@@ -31,21 +31,20 @@ build = {
 
 		var album = "",
 			longTitle = "",
-			title = albumJSON.title;
+			title = albumJSON.title,
+			typeThumb = "";
 
 		if (title.length>18) {
 			title = albumJSON.title.substr(0, 18) + "...";
 			longTitle = albumJSON.title;
 		}
 
-		typeThumb0 = albumJSON.thumb0.split('.').pop();
-		typeThumb1 = albumJSON.thumb1.split('.').pop();
-		typeThumb2 = albumJSON.thumb2.split('.').pop();
+		if (albumJSON.thumb0.split('.').pop()==="svg") typeThumb = "nonretina";
 
 		album += "<div  class='album' data-id='" + albumJSON.id + "' data-password='" + albumJSON.password + "'>";
-		album +=	"<img src='" + albumJSON.thumb2 + "' width='200' height='200' alt='thumb' data-type='" + typeThumb2 + "'>";
-		album +=	"<img src='" + albumJSON.thumb1 + "' width='200' height='200' alt='thumb' data-type='" + typeThumb1 + "'>";
-		album +=	"<img src='" + albumJSON.thumb0 + "' width='200' height='200' alt='thumb' data-type='" + typeThumb0 + "'>";
+		album +=	"<img src='" + albumJSON.thumb2 + "' width='200' height='200' alt='thumb' data-type='nonretina'>";
+		album +=	"<img src='" + albumJSON.thumb1 + "' width='200' height='200' alt='thumb' data-type='nonretina'>";
+		album +=	"<img src='" + albumJSON.thumb0 + "' width='200' height='200' alt='thumb' data-type='" + typeThumb + "'>";
 		album +=	"<div class='overlay'>";
 
 		if (albumJSON.password&&!lychee.publicMode) album += "<h1><span class='icon-lock'></span> " + title + "</h1>";

+ 1 - 1
assets/js/view.js

@@ -147,7 +147,7 @@ view = {
 				if (smartData===""&&albumsData==="") $("body").append(build.no_content("picture"));
 				else lychee.content.html(smartData + albumsData);
 
-				$("img[data-type!='svg']").retina();
+				$("img[data-type!='nonretina']").retina();
 
 			},
 

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