Merge pull request #1581 from phl0/dot2Portable

As shortcut replace dot by /P on callsign input
This commit is contained in:
Florian (DF2ET)
2025-01-30 13:18:46 +01:00
committed by GitHub

View File

@@ -66,6 +66,7 @@ $(document).on("keydown", function (e) {
$('#callsign').on('input', function () {
$(this).val($(this).val().replace(/\s/g, ''));
$(this).val($(this).val().replace(/0/g, 'Ø'));
$(this).val($(this).val().replace(/\./g, '/P'));
});
$('#locator').on('input', function () {