mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
return qso_id and adif data from create_qso() in an array so it can reused in other places aswell
This commit is contained in:
@@ -347,8 +347,8 @@ $("#qso_input").off('submit').on('submit', function (e) {
|
||||
type: 'post',
|
||||
timeout: 10000,
|
||||
data: $(this).serialize(),
|
||||
success: function (resdata) {
|
||||
result = JSON.parse(resdata);
|
||||
dataType: 'json',
|
||||
success: function (result) {
|
||||
if (result.message == 'success') {
|
||||
activeStationId = result.activeStationId;
|
||||
activeStationOP = result.activeStationOP;
|
||||
|
||||
Reference in New Issue
Block a user