diff --git a/application/controllers/Qso.php b/application/controllers/Qso.php index 3189df04..05916d60 100755 --- a/application/controllers/Qso.php +++ b/application/controllers/Qso.php @@ -151,6 +151,10 @@ class QSO extends CI_Controller { } } + function winkeysettings() { + $this->load->view('qso/components/winkeysettings'); + } + function edit_ajax() { $this->load->model('logbook_model'); diff --git a/application/views/qso/components/winkeysettings.php b/application/views/qso/components/winkeysettings.php new file mode 100644 index 00000000..ae80a9f1 --- /dev/null +++ b/application/views/qso/components/winkeysettings.php @@ -0,0 +1,16 @@ + + \ No newline at end of file diff --git a/application/views/qso/index.php b/application/views/qso/index.php index 0844840b..60969b10 100755 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -517,13 +517,33 @@
-

Winkey

+
+

Winkey + + + + +

+
-
- - -
+
+ + + + + + +

+ + +
+
diff --git a/assets/js/sections/qso.js b/assets/js/sections/qso.js index df22c366..50d4d3ab 100644 --- a/assets/js/sections/qso.js +++ b/assets/js/sections/qso.js @@ -798,3 +798,17 @@ function resetDefaultQSOFields() { $('#callsign-image-content').text(""); $('.dxccsummary').remove(); } + +function closeModal() { + var container = document.getElementById("modals-here") + var backdrop = document.getElementById("modal-backdrop") + var modal = document.getElementById("modal") + + modal.classList.remove("show") + backdrop.classList.remove("show") + + setTimeout(function() { + container.removeChild(backdrop) + container.removeChild(modal) + }, 200) +} \ No newline at end of file