[Advanced Logbook] Fixed ADIF button when no QSOs were checked
这个提交包含在:
父节点
c192abaee6
当前提交
fd450673db
共有 1 个文件被更改,包括 1 次插入 和 1 次删除
|
|
@ -274,12 +274,12 @@ $(document).ready(function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#exportAdif').click(function (event) {
|
$('#exportAdif').click(function (event) {
|
||||||
$('#exportAdif').prop("disabled", true);
|
|
||||||
var elements = $('#qsoList tbody input:checked');
|
var elements = $('#qsoList tbody input:checked');
|
||||||
var nElements = elements.length;
|
var nElements = elements.length;
|
||||||
if (nElements == 0) {
|
if (nElements == 0) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
$('#exportAdif').prop("disabled", true);
|
||||||
var id_list=[];
|
var id_list=[];
|
||||||
elements.each(function() {
|
elements.each(function() {
|
||||||
let id = $(this).first().closest('tr').data('qsoID')
|
let id = $(this).first().closest('tr').data('qsoID')
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用