From 5f7b98f19e330074b75029f33713402e400d1fc7 Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Thu, 7 Sep 2023 13:07:27 +0000 Subject: [PATCH] Bug 34724: (QA follow-up): Replace href from thumbnail link with a # to keep pointer event. The href link gets reconstructed by showCover anyway Remove return false from on click event, its not triggering a location change anymore because of the above Remove check for imagenumber, its a non-null primary key, if the image exists, then the imagenumber must also exist The link does not contain translatable strings, it doesnt need to be repeated twice in if-else just for a css class change Signed-off-by: Pedro Amorim --- .../bootstrap/en/modules/opac-imageviewer.tt | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-imageviewer.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-imageviewer.tt index 4bc57d82b6..ec2a495acd 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-imageviewer.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-imageviewer.tt @@ -87,12 +87,8 @@
[% FOREACH image IN images %] - - [% IF loop.first %] - Thumbnail - [% ELSE %] - Thumbnail - [% END %] + + Thumbnail [% END %]
@@ -114,11 +110,7 @@ $("#largeCoverImg").attr("src","[% interface | html %]/[% theme | html %]/images/loading.gif"); showCover([% imagenumber | html %]); $("a.cover_thumbnail").on('click',function(){ - let imagenumber = this.dataset.imagenumber; - if (imagenumber){ - showCover(imagenumber); - } - return false; + showCover(this.dataset.imagenumber); }); }); -- 2.30.2