Fix vtx tab animation on init

10.7.0-preview
IvoFPV 2019-09-11 19:58:18 +02:00
parent 62a0ba51a9
commit 073eeb0663
1 changed files with 11 additions and 3 deletions

View File

@ -260,9 +260,17 @@ TABS.vtx.initialize = function (callback) {
} }
} }
$("#vtx_frequency_channel").prop('checked', VTX_CONFIG.vtx_band == 0 && VTX_CONFIG.vtx_frequency > 0) $("#vtx_frequency_channel").prop('checked', VTX_CONFIG.vtx_band == 0 && VTX_CONFIG.vtx_frequency > 0).change(frequencyOrBandChannel);
.change(frequencyOrBandChannel)
.change(); if ($("#vtx_frequency_channel").prop('checked')) {
$(".field.vtx_channel").hide();
$(".field.vtx_band").hide();
$(".field.vtx_frequency").show();
} else {
$(".field.vtx_channel").show();
$(".field.vtx_band").show();
$(".field.vtx_frequency").hide();
}
function showHidePowerlevels() { function showHidePowerlevels() {
let powerlevelsValue = $(this).val(); let powerlevelsValue = $(this).val();