Bugzilla – Attachment 178865 Details for
Bug 39189
Collapsing sections on moredetail.pl not working
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 39189: Fix collapsing panels on moredetail.tt
Bug-39189-Fix-collapsing-panels-on-moredetailtt.patch (text/plain), 3.52 KB, created by
Owen Leonard
on 2025-02-28 16:05:27 UTC
(
hide
)
Description:
Bug 39189: Fix collapsing panels on moredetail.tt
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2025-02-28 16:05:27 UTC
Size:
3.52 KB
patch
obsolete
>From eb2443f7f751a893119c9a758dd51faf7fa53f0e Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >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. >--- > .../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(); >- } >- } > </script> > [% 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
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 39189
:
178551
|
178865
|
178866
|
179157
|
179323
|
179346
|
179347
|
179348
|
179349
|
179352
|
179353
|
179354
|
179355