From 9cab9718882aa69deee639d613625f884afb33c5 Mon Sep 17 00:00:00 2001 From: phl0 Date: Thu, 5 Mar 2026 09:04:47 +0100 Subject: [PATCH] Revert "Added JS for band changes" This reverts commit fe7f7fa9ff1936e972177a3a230121ddde4e5fac. --- application/views/awards/wae/index.php | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/application/views/awards/wae/index.php b/application/views/awards/wae/index.php index 8fa04be72..055ddb8e2 100644 --- a/application/views/awards/wae/index.php +++ b/application/views/awards/wae/index.php @@ -8,27 +8,6 @@ document.addEventListener("DOMContentLoaded", function() { }); }); }); -$('#band2').change(function(){ - var band = $("#band2 option:selected").text(); - if (band != "SAT") { - $("#sats").val('All'); - $("#orbits").val('All'); - $("#satrow").hide(); - $("#orbitrow").hide(); - } else { - $("#satrow").show(); - $("#orbitrow").show(); - } -}); - -$('#band2').change(); // trigger the change on fresh-load to hide/show SAT-Params - -$('#sats').change(function(){ - var sat = $("#sats option:selected").text(); - $("#band2").val('SAT'); - if (sat != "All") { - } -});