diff --git a/application/controllers/Simplefle.php b/application/controllers/Simplefle.php index c626c1f1..164ba714 100644 --- a/application/controllers/Simplefle.php +++ b/application/controllers/Simplefle.php @@ -14,6 +14,7 @@ class SimpleFLE extends CI_Controller { $data['station_profile'] = $this->stations->all_of_user(); // Used in the view for station location select $data['bands'] = $this->bands->get_all_bands_for_user(); // Fetching Bands for FLE + $data['active_station_profile'] = $this->stations->find_active(); // Prepopulate active Station in Station Location Selector $data['page_title'] = "Simple Fast Log Entry"; diff --git a/application/views/simplefle/index.php b/application/views/simplefle/index.php index 7ec1876f..b38679e1 100644 --- a/application/views/simplefle/index.php +++ b/application/views/simplefle/index.php @@ -9,10 +9,7 @@ var lang_simplefle_info_ln3 = ""; var lang_simplefle_info_ln4 = ""; var lang_simplefle_syntax_help = ""; - var lang_simplefle_syntax_help_ln1 = ""; - var lang_simplefle_syntax_help_ln2 = ""; - var lang_simplefle_syntax_help_ln3 = ""; - var lang_simplefle_syntax_help_ln4 = ""; + var lang_simplefle_syntax_help_title = "";

@@ -63,13 +60,16 @@
- + +
@@ -121,7 +121,7 @@
- +
diff --git a/assets/js/sections/simplefle.js b/assets/js/sections/simplefle.js index b3a5f4a1..9c17ae98 100644 --- a/assets/js/sections/simplefle.js +++ b/assets/js/sections/simplefle.js @@ -99,7 +99,7 @@ $('#js-syntax').click(function (event) { type: 'post', success: function (html) { BootstrapDialog.alert({ - title: "

"+lang_simplefle_syntax_help_ln1+"

", + title: "

"+lang_simplefle_syntax_help_title+"

", size: BootstrapDialog.SIZE_WIDE, nl2br: false, message: html, @@ -441,6 +441,18 @@ for (const [key, value] of Object.entries(Bands)) { } $(".js-band-settings").html(htmlSettings); + + + + + + + + + + + + $(".js-download-adif").click(function () { var operator = $("#operator").val(); operator = operator.toUpperCase(); @@ -534,6 +546,17 @@ $(".js-download-adif").click(function () { download(filename, adif); }); + + + + + + + + + + + function isBandModeEntered() { let isBandModeOK = true; qsoList.forEach((item) => {