From e24534411f8c6921a1371b40be07504b15256e6d Mon Sep 17 00:00:00 2001 From: David Cook Date: Mon, 28 Jul 2025 04:03:13 +0000 Subject: [PATCH] Bug 40523: Remove unused variable from datatables.js This change removes an unused variable from datatables.js Test plan: 0. Apply the patch 1. Go to http://localhost:8080/cgi-bin/koha/opac-main.pl 2. Search for this payload: "abc123" 3. Click on "Search history" in the top right corner of the screen 4. Click ""CSV", "Copy", and "Print" on the "Current session" toolbar 5. Note that all the buttons work as expected Signed-off-by: Owen Leonard --- .../opac-tmpl/bootstrap/js/datatables.js | 31 ------------------- 1 file changed, 31 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/js/datatables.js b/koha-tmpl/opac-tmpl/bootstrap/js/datatables.js index 114dfcd22a2..05bb9b31ba4 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/js/datatables.js +++ b/koha-tmpl/opac-tmpl/bootstrap/js/datatables.js @@ -428,37 +428,6 @@ function _dt_buttons(params) { }, }; - var export_buttons = [ - { - extend: "excelHtml5", - exportOptions: { - columns: exportColumns, - format: export_format, - }, - }, - { - extend: "csvHtml5", - exportOptions: { - columns: exportColumns, - format: export_format, - }, - }, - { - extend: "copyHtml5", - exportOptions: { - columns: exportColumns, - format: export_format, - }, - }, - { - extend: "print", - exportOptions: { - columns: exportColumns, - format: export_format, - }, - }, - ]; - let buttons = [ { fade: 100, -- 2.39.5