Updates images in photostream to show full size

This commit is contained in:
Josh Johnson 2022-10-08 11:13:11 -04:00
parent 9dea77f43f
commit f935ff81cc

View file

@ -10,7 +10,7 @@ iweblog.application = function() {
var image = item.media.m;
var smallImage = image.replace("_m.jpg", "_s.jpg");
var largeImage = image.replace("_m.jpg", ".jpg");
var largeImage = image.replace("_m.jpg", "_b.jpg");
htmlString += "<a class=\"photo-item\" href=\"" + largeImage + "\">";
htmlString += "<img src=\"" + smallImage + "\" />";
htmlString += "</a>";