Spacebar moves to name field

Spacebar moves to the name field when you're entering a callsign

Similar to contesting ux, good for pileups.
这个提交包含在:
Anthony Di Iorio 2020-12-23 03:23:31 -05:00
父节点 d607502c29
当前提交 18fbb72d19

查看文件

@ -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() {