mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
22 lines
522 B
JavaScript
22 lines
522 B
JavaScript
$('#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") {
|
|
}
|
|
});
|