If locator is present before entering a callsign its not overwritten when search is done
这个提交包含在:
父节点
f13c6bdcb3
当前提交
8973ceb8e0
共有 1 个文件被更改,包括 5 次插入 和 3 次删除
|
|
@ -274,10 +274,12 @@ $(document).ready(function(){
|
|||
$('#country').val(result);
|
||||
});
|
||||
|
||||
$.get('logbook/callsign_qra/' + $(this).val(), function(result) {
|
||||
$('#locator').val(result);
|
||||
if($('#locator').val() == "") {
|
||||
$.get('logbook/callsign_qra/' + $(this).val(), function(result) {
|
||||
$('#locator').val(result);
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
$.get('logbook/callsign_name/' + $(this).val(), function(result) {
|
||||
$('#name').val(result);
|
||||
});
|
||||
|
|
|
|||
正在加载…
在新工单中引用