From a3e6bb06567d59ed607850b74e30b0da0098d342 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Wed, 18 Oct 2023 20:31:32 +0000 Subject: [PATCH] Bug 35101: Stop screen from jumping back to top when using barcode.pl plugin To test: 1. Set 'autoBarcode' to something other than 'don't generate automatically' 2. If the a framwwork make sure some 952 fields have the barcode.pl plugin enabled 3. Add a new item and click the '...' next to the 952 field with the barcode.pl plugin enabled. 4. The screen jumps back to the top, annoying. 5. Apply patch 6. Try again, it should not jump anymore! Signed-off-by: Barbara Johnson Signed-off-by: Victor Grousset/tuxayo --- cataloguing/value_builder/barcode.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cataloguing/value_builder/barcode.pl b/cataloguing/value_builder/barcode.pl index bd4a927ef1..b166b46c4d 100755 --- a/cataloguing/value_builder/barcode.pl +++ b/cataloguing/value_builder/barcode.pl @@ -92,10 +92,12 @@ $scr function Focus$function_name(event) { set_barcode(event.data.id, false); + return false; } function Click$function_name(event) { set_barcode(event.data.id, true); + return false; } END_OF_JS -- 2.42.0