Bugzilla – Attachment 155759 Details for
Bug 34724
Remove use of onclick for opac-imageviewer.pl
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 34724: (QA follow-up):
Bug-34724-QA-follow-up.patch (text/plain), 2.48 KB, created by
Katrin Fischer
on 2023-09-17 14:29:16 UTC
(
hide
)
Description:
Bug 34724: (QA follow-up):
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2023-09-17 14:29:16 UTC
Size:
2.48 KB
patch
obsolete
>From e9b4d6c0d61f81653f43527138c27812f68f6671 Mon Sep 17 00:00:00 2001 >From: Pedro Amorim <pedro.amorim@ptfs-europe.com> >Date: Fri, 8 Sep 2023 16:01:03 +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 > >Signed-off-by: David Cook <dcook@prosentient.com.au> >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > .../opac-tmpl/bootstrap/en/modules/opac-imageviewer.tt | 8 ++------ > 1 file changed, 2 insertions(+), 6 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..107c6b5f14 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-imageviewer.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-imageviewer.tt >@@ -87,7 +87,7 @@ > <div class="col-lg-3"> > <div id="thumbnails"> > [% FOREACH image IN images %] >- <a class="cover_thumbnail" data-imagenumber="[% image.imagenumber| html %]" href="/cgi-bin/koha/opac-imageviewer.pl?biblionumber=[% biblionumber | url %]&imagenumber=[% image.imagenumber| uri %]"> >+ <a class="cover_thumbnail" data-imagenumber="[% image.imagenumber| html %]" href="#"> > [% IF loop.first %] > <img class="thumbnail selected" id="[% image.imagenumber| html %]" src="/cgi-bin/koha/opac-image.pl?imagenumber=[% image.imagenumber | html %]&thumbnail=1" alt="Thumbnail"/> > [% ELSE %] >@@ -114,11 +114,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
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 34724
:
155255
|
155299
|
155300
|
155445
|
155472
|
155758
| 155759