Skip to content

Commit 03abefc

Browse files
committed
Set band to SAT if a satellite is selected
1 parent daa2e6a commit 03abefc

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

assets/js/sections/dxccmap.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,13 @@ $('#band2').change(function(){
1313
}
1414
});
1515

16+
$('#sats').change(function(){
17+
var sat = $("#sats option:selected").text();
18+
$("#band2").val('SAT');
19+
if (sat != "All") {
20+
}
21+
});
22+
1623
function load_dxcc_map() {
1724
$('.nav-tabs a[href="#dxccmaptab"]').tab('show');
1825
$.ajax({

0 commit comments

Comments
 (0)