From 352137865aaf496c90fac884bb77df4a916841af Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Wed, 26 Feb 2014 06:48:10 +0100 Subject: [PATCH] Get larger images from WoT, let the browser scale it down. This will improve image quality on Retina displays. --- src/main/resources/templates/include/soneMenu.html | 2 +- src/main/resources/templates/include/viewPost.html | 2 +- src/main/resources/templates/include/viewReply.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/resources/templates/include/soneMenu.html b/src/main/resources/templates/include/soneMenu.html index f599eb4..fc51e79 100644 --- a/src/main/resources/templates/include/soneMenu.html +++ b/src/main/resources/templates/include/soneMenu.html @@ -4,7 +4,7 @@ <%ifnull !sone.profile.avatar> <%sone.profile.avatar|image-link max-width==64 max-height==64 mode==enlarge title=sone.niceName> <%else> - Avatar Image + Avatar Image <%/if>
diff --git a/src/main/resources/templates/include/viewPost.html b/src/main/resources/templates/include/viewPost.html index efc3d53..1c53d42 100644 --- a/src/main/resources/templates/include/viewPost.html +++ b/src/main/resources/templates/include/viewPost.html @@ -9,7 +9,7 @@ <%ifnull !post.sone.profile.avatar> <%post.sone.profile.avatar|image-link max-width==48 max-height==48 mode==enlarge title=="Avatar Image"> <%else> - Avatar Image + Avatar Image <%/if> <%else> Avatar Image diff --git a/src/main/resources/templates/include/viewReply.html b/src/main/resources/templates/include/viewReply.html index 449a235..ab20441 100644 --- a/src/main/resources/templates/include/viewReply.html +++ b/src/main/resources/templates/include/viewReply.html @@ -8,7 +8,7 @@ <%ifnull !reply.sone.profile.avatar> <% reply.sone.profile.avatar|image-link max-width==36 max-height==36 mode==enlarge title=="Avatar Image"> <%else> - Avatar Image + Avatar Image <%/if>
-- 2.7.4