From 5cf9dabcab5c876bfe3a67a2fe1e75ade912686c Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Fri, 9 Jun 2023 17:19:28 +0000 Subject: [PATCH] Bug 33897: (QA follow-up) Correct code for tab selection This patch corrects the code for selecting tabs other than the first tab. To test, apply the patch and view the bibliographic detail page for a serial record and with various settings of the opacSerialDefaultTab system preference. If you select "subscriptions tab" the subscriptions tab should be active by default. You can also enable html5media and view a record with html5media information and no holdings. The media tab should be displayed by default. --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt index f9e45985f1..d2fed73b48 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt @@ -2036,7 +2036,7 @@ }); function showBsTab( container, panelid ){ - if( $( "#" + panelid ).length == 1 ){ + if( $( "#" + panelid + "_panel" ).length == 1 ){ $("#" + container + " a[href='#" + panelid + "_panel']").tab("show"); } else { $("#" + container + " a:first").tab("show"); -- 2.30.2