From 5eb0104d5ce2eae93ca013899c6b2115754bb423 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Wed, 13 Nov 2024 10:58:42 +0100 Subject: [PATCH] we should hide the callsign empty warning if a callsign was entered --- assets/js/sections/qso.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/assets/js/sections/qso.js b/assets/js/sections/qso.js index 45fd2de95..0cecf6659 100644 --- a/assets/js/sections/qso.js +++ b/assets/js/sections/qso.js @@ -568,6 +568,8 @@ function reset_fields() { $("#callsign").on("focusout", function () { if ($(this).val().length >= 3 && preventLookup == false) { + $("#noticer").fadeOut(1000); + // Temp store the callsign var temp_callsign = $(this).val();