Add mode to CAT banner

这个提交包含在:
phl0 2023-05-20 16:16:24 +02:00
父节点 596480f029
当前提交 81a8ecc3b3
找不到此签名对应的密钥
GPG 密钥 ID: 48EA1E640798CA9A

查看文件

@ -1256,8 +1256,11 @@ $(document).on('keypress',function(e) {
} else { } else {
$(".radio_timeout_error" ).remove(); $(".radio_timeout_error" ).remove();
text = '<i class="fas fa-broadcast-tower"></i><span style="margin-left:10px;"></span><b>TX:</b> '+(Math.round(parseInt(data.frequency)/1000)/1000).toFixed(3)+' MHz'; text = '<i class="fas fa-broadcast-tower"></i><span style="margin-left:10px;"></span><b>TX:</b> '+(Math.round(parseInt(data.frequency)/1000)/1000).toFixed(3)+' MHz';
if(data.mode != null) {
text = text+'<span style="margin-left:10px"></span>'+data.mode;
}
if(data.power != null && data.power != 0) { if(data.power != null && data.power != 0) {
text = text+'<span style="margin-left:10px"></span>'+data.power+'W'; text = text+'<span style="margin-left:10px"></span>'+data.power+' W';
} }
if(data.prop_mode != null && data.prop_mode != '') { if(data.prop_mode != null && data.prop_mode != '') {
text = text+'<span style="margin-left:10px"></span>('+data.prop_mode; text = text+'<span style="margin-left:10px"></span>('+data.prop_mode;