From 6123c2767d4ad2f1e56e667551a8fbcdcd494249 Mon Sep 17 00:00:00 2001 From: Kevin Carnes Date: Fri, 30 Sep 2022 09:21:25 +0200 Subject: [PATCH] Bug 31660: MARC preview for authority search results has hidden contents This patch makes the contents of the MARC preview for authority search results visible. To test: 1) Go to the Authorities page in the staff interface 2) Click Submit to do a search 3) Click on Actions to the right of an authority 4) Select MARC preview 5) Observe that the modal appears empty 6) Apply patch 7) Hold down the shift key when you reload the page, clear the cache, or use another web browser 8) Do another authority search and look at a MARC preview 9) Observe that the MARC preview contains the MARC record Signed-off-by: Owen Leonard Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi --- koha-tmpl/intranet-tmpl/prog/js/authorities-detail-modal.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/js/authorities-detail-modal.js b/koha-tmpl/intranet-tmpl/prog/js/authorities-detail-modal.js index 57ba0405ea..a53a53de38 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/authorities-detail-modal.js +++ b/koha-tmpl/intranet-tmpl/prog/js/authorities-detail-modal.js @@ -6,6 +6,9 @@ $(document).ready(function(){ $.get("/cgi-bin/koha/authorities/detail.pl", { authid : authid }, function( data ){ var auth_detail = $(data).find("#authoritiestabs"); auth_detail.find("ul").remove(); + auth_detail.removeClass("toptabs"); + auth_detail.find("> div").removeClass("tab-content"); + auth_detail.find("> div > div").removeClass("tab-pane").removeAttr("role"); $("#authorityDetail .modal-title").html(__("Authority") + " " + authid ); $("#authorityDetail .modal-body").html( auth_detail ); }); -- 2.39.5