From aba5834a107a9ee888bdfd67e3b4f11b8fa31c51 Mon Sep 17 00:00:00 2001 From: phl0 Date: Sun, 14 Apr 2024 09:27:30 +0200 Subject: [PATCH] Unhide sat/orbit on selection of "Every band" --- assets/js/sections/dxccmap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/sections/dxccmap.js b/assets/js/sections/dxccmap.js index d7615ebcd..94a8cd225 100644 --- a/assets/js/sections/dxccmap.js +++ b/assets/js/sections/dxccmap.js @@ -2,7 +2,7 @@ var osmUrl = $('#dxccmapjs').attr("tileUrl"); $('#band2').change(function(){ var band = $("#band2 option:selected").text(); - if (band != "SAT") { + if (band != "SAT" && band != "Every band") { $("#sats").val('All'); $("#orbits").val('All'); $("#satrow").hide();