mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
7 lines
142 B
JavaScript
7 lines
142 B
JavaScript
$('#band').change(function(){
|
|
var band = $("#band option:selected").text();
|
|
if (band == "SAT") {
|
|
$('#propmode').val('SAT');
|
|
}
|
|
});
|