From 93efb12543d878008554cd8166158f48b821b58a Mon Sep 17 00:00:00 2001 From: phl0 Date: Mon, 6 Feb 2023 08:33:19 +0100 Subject: [PATCH] Allow for (temporarily) adding unknown WWFF refs --- assets/js/sections/common.js | 4 ++-- assets/js/sections/qso.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/js/sections/common.js b/assets/js/sections/common.js index b0cbdc26..b5027fb1 100644 --- a/assets/js/sections/common.js +++ b/assets/js/sections/common.js @@ -174,7 +174,7 @@ function qso_edit(id) { labelField: 'name', searchField: 'name', options: [], - create: false, + create: true, load: function(query, callback) { if (!query || query.length < 3) return callback(); // Only trigger if 3 or more characters are entered $.ajax({ @@ -447,4 +447,4 @@ function getDxccResult(dxcc, name) { $('.dxccsummarybody').append(html); } }); -} \ No newline at end of file +} diff --git a/assets/js/sections/qso.js b/assets/js/sections/qso.js index d0f0b706..095d752a 100644 --- a/assets/js/sections/qso.js +++ b/assets/js/sections/qso.js @@ -101,7 +101,7 @@ $( document ).ready(function() { labelField: 'name', searchField: 'name', options: [], - create: false, + create: true, load: function(query, callback) { if (!query || query.length < 3) return callback(); // Only trigger if 3 or more characters are entered $.ajax({