From b10adb00548d641662279a3cd94089d7eb87235c Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Fri, 11 Oct 2024 10:36:47 +0200 Subject: [PATCH] store dxcc_id in localStorage aswell --- install/includes/interface_assets/footer.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install/includes/interface_assets/footer.php b/install/includes/interface_assets/footer.php index 4bca02ee7..b01cb9d0b 100644 --- a/install/includes/interface_assets/footer.php +++ b/install/includes/interface_assets/footer.php @@ -25,6 +25,10 @@ var inputValue = $(this).val(); localStorage.setItem(inputId, inputValue); }); + $('#dxcc_id').change(function() { + var dxcc_id = $(this).val(); + localStorage.setItem('dxcc_id', dxcc_id); + }); // delete all data in localStorage and reload page $('#resetInstaller').click(function() {