From e7ce435c4b75eb8331da5f9791cc046e02dec4ae Mon Sep 17 00:00:00 2001 From: phl0 Date: Sat, 6 Apr 2024 18:57:03 +0200 Subject: [PATCH] rReset orbit and sat to all if band is not sat --- assets/js/sections/gridmap.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/assets/js/sections/gridmap.js b/assets/js/sections/gridmap.js index cf5b76d15..521c6da0d 100644 --- a/assets/js/sections/gridmap.js +++ b/assets/js/sections/gridmap.js @@ -3,6 +3,8 @@ var modalloading=false; $('#band').change(function(){ var band = $("#band option:selected").text(); if (band != "SAT") { + $("#sats").val('All'); + $("#orbits").val('All'); $("#sats").hide(); $("#orbits").hide(); $("#satslabel").hide();