From 489b76132315ad8df3a35ac3e509f2d1c34cec81 Mon Sep 17 00:00:00 2001 From: Josef Moravec Date: Thu, 2 Aug 2018 06:45:26 +0000 Subject: [PATCH] Bug 21145: Do not show buttons for datatables on opac detail page Test plan: 0) Do not apply the patch 1) Go to opac detail page 2) There are up to three datatables - items - items from other branches (only if there are any and the OpacSeparateHoldings preference is set) - subscriptions 3) try to find record with all three tables and confirm, there is button "Columns visibility" above the table 4) Apply the patch 5) Repeat 1-3 and confirm the button is no more here Signed-off-by: Owen Leonard --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 8a6e24e..3278210 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt @@ -1422,7 +1422,7 @@ var columns_settings = [% ColumnsSettings.GetColumns( 'opac', 'biblio-detail', 'holdingst', 'json' ) %]; KohaTable("#holdingst", { - dom: 'B<"clearfix">t', + dom: '<"clearfix">t', "columnDefs": [ { "targets": [ -1 ], "sortable": false, "searchable": false }, { "type": "title-string", "targets" : [ "title-string" ] } @@ -1431,7 +1431,7 @@ }, columns_settings); KohaTable("#otherholdingst", { - dom: 'B<"clearfix">t', + dom: '<"clearfix">t', "columnDefs": [ { "targets": [ -1 ], "sortable": false, "searchable": false }, { "type": "title-string", "targets" : [ "title-string" ] } @@ -1442,7 +1442,7 @@ var serial_column_settings = [% ColumnsSettings.GetColumns( 'opac', 'biblio-detail', 'subscriptionst', 'json' ) %]; KohaTable("#subscriptionst", { - dom: 'B<"clearfix">t', + dom: '<"clearfix">t', "columnDefs": [ { "type": "title-string", "targets" : [ "title-string" ] } ], -- 2.1.4