ADIF field should be filled with null in case of failure
这个提交包含在:
父节点
23f45ee5be
当前提交
8135924345
共有 2 个文件被更改,包括 2 次插入 和 2 次删除
|
|
@ -177,7 +177,7 @@ function qso_edit(id) {
|
||||||
document.getElementById("distance").value = data;
|
document.getElementById("distance").value = data;
|
||||||
},
|
},
|
||||||
error: function() {
|
error: function() {
|
||||||
document.getElementById("distance").value = 'Error calculating distance!';
|
document.getElementById("distance").value = null;
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -863,7 +863,7 @@ $("#locator").keyup(function(){
|
||||||
document.getElementById("distance").value = data;
|
document.getElementById("distance").value = data;
|
||||||
},
|
},
|
||||||
error: function() {
|
error: function() {
|
||||||
document.getElementById("distance").value = 'Error calculating distance!';
|
document.getElementById("distance").value = null;
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用