[Advanced Logbook] Added a button to set QSL not required

这个提交包含在:
Andreas 2023-05-03 13:00:01 +02:00
父节点 22a2b1c61a
当前提交 c192abaee6
共有 2 个文件被更改,包括 4 次插入0 次删除

查看文件

@ -181,6 +181,7 @@
<button type="button" class="btn btn-sm btn-success" id="sentDirect">Sent Direct</button>
<button type="button" class="btn btn-sm btn-success" id="sentElectronic">Sent Electronic</button>
<button type="button" class="btn btn-sm btn-warning" id="dontSend">Don't Send</button>
<button type="button" class="btn btn-sm btn-warning" id="notRequired">QSL Not Required</button>
<button type="button" class="btn btn-sm btn-info" id="exportAdif">Create ADIF</button>
<button type="button" class="btn btn-sm btn-danger" id="deleteQsos">Delete</button>
<span id="infoBox"></span>

查看文件

@ -336,6 +336,9 @@ $(document).ready(function () {
$('#dontSend').click(function (event) {
handleQsl('N','', 'dontSend');
});
$('#notRequired').click(function (event) {
handleQsl('I','', 'notRequired');
});
$('#searchForm').on('reset', function(e) {
setTimeout(function() {