Set band to SAT if a satellite is selected

This commit is contained in:
phl0
2024-04-14 09:24:09 +02:00
parent daa2e6ad9f
commit 03abefccd7

View File

@@ -13,6 +13,13 @@ $('#band2').change(function(){
}
});
$('#sats').change(function(){
var sat = $("#sats option:selected").text();
$("#band2").val('SAT');
if (sat != "All") {
}
});
function load_dxcc_map() {
$('.nav-tabs a[href="#dxccmaptab"]').tab('show');
$.ajax({