From bb65d6c4f02eedc09922868b2015a6aad126cd2b Mon Sep 17 00:00:00 2001 From: Adam Cable Date: Fri, 11 Jul 2025 03:18:56 +0100 Subject: [PATCH] Add alt text to Elephants images (#1292) --- js/common.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/common.js b/js/common.js index a70f81236..ee5f190c6 100644 --- a/js/common.js +++ b/js/common.js @@ -426,6 +426,7 @@ $(document).ready(function () { link.attr('href', photo.url); link.attr('title', photo.title); image = $(''); + image.attr('alt', ''); image.attr('src', 'data:image/jpeg;base64,' + photo.data); $(node).append(link.append(image)); }