From 0d0f152adcdfe4cc7aae2eb4d0c24499062829b2 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 6 Mar 2025 12:58:13 +0000 Subject: [PATCH] Bug 39262: Don't pass string literals to setTimeout Content-Type: text/plain; charset=utf-8 This patch updates a few places in our code where we pass string literals to JavaScript's setTimeout() function. This is not recommended: https://developer.mozilla.org/en-US/docs/Web/API/Window/setTimeout#passing_string_literals To test, apply the patch and clear your browser cache if necessary. - In the OPAC, perform a catalog search. From the search results page, test adding some items to the cart. The "Item has been added to your cart" message should appear and disappear correctly. - In the staff interface, view the contents of a list. Click the "Print list" button in the toolbar. A new tab should load and trigger the browser's print window. Printing the page or cancelling should automatically close the tab. - Go to Acquisitions -> Vendor -> Basket groups. In the "Open" tab, click the "Close and export as PDF" button. This should trigger a page reload and the creation of a PDF. The basket group should now appear under the "Closed" tab. Sponsored-by: Athens County Public Libraries Signed-off-by: David Cook Signed-off-by: Marcel de Rooy --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt | 4 +++- .../intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt | 4 +++- koha-tmpl/opac-tmpl/bootstrap/js/basket.js | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt index 153d0e8d90..ba83451cf2 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt @@ -410,7 +410,9 @@ function closeandprint(bg){ if(document.location = '/cgi-bin/koha/acqui/basketgroup.pl?op=closeandprint&basketgroupid=' + bg ){ - setTimeout("window.location.reload();", 3000); + setTimeout(() => { + window.location.reload(); + }, 3000); } else { alert( _("Error downloading the file") ); } diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt index 52069f4ed1..ed1323169c 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt @@ -640,7 +640,9 @@ window.onafterprint = function () { window.close(); }; - setTimeout("window.close()", 1000); // Hack for Chrome < 63 + setTimeout(() => { + window.close(); + }, 1000); // Hack for Chrome < 63 }); [% END #/print %] diff --git a/koha-tmpl/opac-tmpl/bootstrap/js/basket.js b/koha-tmpl/opac-tmpl/bootstrap/js/basket.js index 0f12addf84..e4a9c5f5ae 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/js/basket.js +++ b/koha-tmpl/opac-tmpl/bootstrap/js/basket.js @@ -209,7 +209,7 @@ function showCartUpdate(msg) { // set body of popup window $("#cartDetails").html(msg); showCart(); - setTimeout("hideCart()", 2000); + setTimeout(hideCart, 2000); } function showListsUpdate(msg) { -- 2.39.5