store dxcc_id in localStorage aswell

This commit is contained in:
HB9HIL
2024-10-11 10:36:47 +02:00
parent d4014e5ffb
commit b10adb0054

View File

@@ -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() {