Enable "Add sked partner" if at least one satellite is selected

This commit is contained in:
phl0
2026-01-08 11:43:59 +01:00
parent b826e5d8d7
commit 13c2f09699

View File

@@ -23,6 +23,11 @@ $(document).ready(function() {
// Then, select the stored locations
$('#satlist').multiselect('select', satelliteArray);
}
var countsats = $('#satlist').val().length;
if (countsats > 0) {
$('#addsked').prop('disabled', false);
}
});
function searchpasses() {