diff --git a/application/views/interface_assets/header.php b/application/views/interface_assets/header.php index 8c5e8afe..9a8bf8c4 100644 --- a/application/views/interface_assets/header.php +++ b/application/views/interface_assets/header.php @@ -237,12 +237,16 @@ if (action === 'search') { form.action = ""; form.method = "post"; - } else if (action === 'qso') { - form.action = ""; // Set ?manual=0 to 1 if go to "Post-QSO" logging - form.method = "post"; } form.submit(); } + function logQuicklog() { + if (localStorage.getItem("quicklogCallsign") !== "") { + localStorage.removeItem("quicklogCallsign"); + } + localStorage.setItem("quicklogCallsign", $("input[name='searchBar']").val()); + window.open("", "_self"); + } session->userdata('user_quicklog_enter') == 1) { ?>
- + - -