[Advanced Logbook] Added a button to set QSL not required
这个提交包含在:
父节点
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() {
|
||||
|
|
|
|||
正在加载…
在新工单中引用