Do Bearing lookup also for Mouse/Tab-Users

This commit is contained in:
int2001
2024-03-08 12:23:34 +00:00
parent a7720aa806
commit 0cb9923196

View File

@@ -251,6 +251,14 @@ $('#start_date').change(function() {
}
});
$("#callsign").on( "blur", function() {
var call = $(this).val();
if ((call.length>=3) && ($("#bearing_info").html().length == 0)) {
getCallbook();
}
});
// On Key up check and suggest callsigns
$("#callsign").keyup(async function (e) {
var call = $(this).val();