From 939f798f3a50896c52ef0de96634bb5e1e4433c2 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Mon, 24 Feb 2025 12:35:44 +0000 Subject: [PATCH] Bug 39189: Fix collapsing panels on moredetail.tt This patch removes a duplicate togglePanel function and a duplicate click handler from moredetail.tt. Bug 38227 made both global by adding them to staff-global.js. Also fixed: Converted a mistaken use of "__" to "_". To test, apply the patch and clear your browser cache if necessary. - Perform a catalog search and view the details of a title with multiple items. - On the bibliographic detail page, click "Items" in the sidebar. - Click a "Barcode XXXX" heading to confirm that it collapses and expands that section correctly. - Collapse all sections and then test the barcode links in the sidebar. Clicking any of them should expand the correct panel and scroll to that section. - Test the other pages using the togglePanel function: Patron entry and the authority search from triggered from the MARC editor. Signed-off-by: Phil Ringnalda Signed-off-by: Lisette Scheer --- .../prog/en/modules/catalogue/moredetail.tt | 19 +------------------ .../intranet-tmpl/prog/js/staff-global.js | 2 +- 2 files changed, 2 insertions(+), 19 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt index f35048b429c..a75ba0efccb 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt @@ -587,12 +587,6 @@ $(document).ready(function(){ var browser = KOHA.browser('[% searchid | html %]', parseInt('[% biblionumber | html %]', 10)); browser.show(); - $(".collapsed, .expanded").on("click",function(e){ - e.preventDefault(); - var linkid = this.id; - window.scrollTo( 0, getScrollto( linkid, "" ) ); - togglePanel( $(this) ); - }); $(".item_sublink").on("click", function () { /* If the user clicks a sub-menu link in the sidebar, @@ -604,23 +598,12 @@ $("#" + href) .addClass("expanded") .removeClass("collapsed") - .attr("title", __("Collapse this section")); + .attr("title", _("Collapse this section")); panel.show(); } }); }); - - function togglePanel( node ){ - var panel = node.next( ".page-section" ); - if(panel.is(":visible")){ - node.addClass("collapsed").removeClass("expanded").attr("title", __("Click to expand this section") ); - panel.hide(); - } else { - node.addClass("expanded").removeClass("collapsed").attr("title", __("Click to collapse this section") ); - panel.show(); - } - } [% END %] [% INCLUDE 'intranet-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/js/staff-global.js b/koha-tmpl/intranet-tmpl/prog/js/staff-global.js index ff9f29b371c..3403b54768c 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/staff-global.js +++ b/koha-tmpl/intranet-tmpl/prog/js/staff-global.js @@ -60,7 +60,7 @@ $.fn.selectTabByID = function (tabID) { }; function togglePanel(node) { - var panel = node.nextAll(); + var panel = node.next(); if (panel.is(":visible")) { node.addClass("collapsed") .removeClass("expanded") -- 2.39.5