Merge pull request #517 from HB9HIL/sanity

This commit is contained in:
HB9HIL
2024-07-01 07:26:38 +02:00
committed by GitHub

View File

@@ -63,6 +63,14 @@ $( document ).ready(function() {
}
});
// Sanitize some input data
$('#callsign').on('input', function() {
$(this).val($(this).val().replace(/\s/g, ''));
});
$('#locator').on('input', function() {
$(this).val($(this).val().replace(/\s/g, ''));
});
$('.callsign-suggest').hide();
setRst($(".mode").val());