@@ -, +, @@ hidden contents --- koha-tmpl/intranet-tmpl/prog/js/authorities-detail-modal.js | 3 +++ 1 file changed, 3 insertions(+) --- a/koha-tmpl/intranet-tmpl/prog/js/authorities-detail-modal.js +++ a/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 ); }); --