Avoid console error on retina-screens
This commit is contained in:
parent
0c609dc303
commit
77398cab56
File diff suppressed because one or more lines are too long
@ -27,11 +27,15 @@ build = {
|
||||
title = albumJSON.title;
|
||||
|
||||
if (title.length>18) title = albumJSON.title.substr(0, 18) + "...";
|
||||
|
||||
typeThumb0 = albumJSON.thumb0.split('.').pop();
|
||||
typeThumb1 = albumJSON.thumb1.split('.').pop();
|
||||
typeThumb2 = albumJSON.thumb2.split('.').pop();
|
||||
|
||||
album += "<div class='album' data-id='" + albumJSON.id + "' data-password='" + albumJSON.password + "'>";
|
||||
album += "<img src='" + albumJSON.thumb2 + "' width='200' height='200' alt='thumb'>";
|
||||
album += "<img src='" + albumJSON.thumb1 + "' width='200' height='200' alt='thumb'>";
|
||||
album += "<img src='" + albumJSON.thumb0 + "' width='200' height='200' alt='thumb'>";
|
||||
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 += "<div class='overlay'>";
|
||||
|
||||
if (albumJSON.password&&!lychee.publicMode) album += "<h1><span class='icon-lock'></span> " + title + "</h1>";
|
||||
|
@ -154,7 +154,7 @@ view = {
|
||||
if (smartData===""&&albumsData==="") $("body").append(build.no_content("picture"));
|
||||
else lychee.content.html(smartData + albumsData);
|
||||
|
||||
$("img").retina();
|
||||
$("img[data-type!='svg']").retina();
|
||||
|
||||
},
|
||||
|
||||
@ -249,7 +249,7 @@ view = {
|
||||
});
|
||||
lychee.content.html(photosData);
|
||||
|
||||
$("img").retina();
|
||||
$("img[data-type!='svg']").retina();
|
||||
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user