diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index b880b6b65..e53b79c4a 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -548,6 +548,14 @@ function reset_fields() { }); }); + //Spacebar moves to the name field when you're entering a callsign + //Similar to contesting ux, good for pileups. + $("#callsign").on("keypress", function(e) { + if (e.which == 32){ + $("#name").focus(); + return false; //Eliminate space char + } + }); // On Key up check and suggest callsigns $("#callsign").keyup(function() {