mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
[QSO][Panel] Pressing Spacebar in the Callsign field moves you to name.
Pressing spacebar within the callsign field now jumps you to the name field
This commit is contained in:
@@ -548,6 +548,14 @@ $(document).on('change', 'input', function(){
|
||||
});
|
||||
});
|
||||
|
||||
//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() {
|
||||
|
||||
Reference in New Issue
Block a user