Skip to content

Commit

Permalink
Fixes #79
Browse files Browse the repository at this point in the history
  • Loading branch information
luc-github committed Apr 24, 2020
1 parent 0789242 commit 1152ccf
Show file tree
Hide file tree
Showing 14 changed files with 4 additions and 3 deletions.
Binary file modified index.html.gz
Binary file not shown.
Binary file modified languages/de/index.html.gz
Binary file not shown.
Binary file added languages/en/index.html.gz
Binary file not shown.
Binary file modified languages/es/index.html.gz
Binary file not shown.
Binary file modified languages/fr/index.html.gz
Binary file not shown.
Binary file modified languages/it/index.html.gz
Binary file not shown.
Binary file modified languages/multi/index.html.gz
Binary file not shown.
Binary file modified languages/pl/index.html.gz
Binary file not shown.
Binary file modified languages/ptbr/index.html.gz
Binary file not shown.
Binary file modified languages/ru/index.html.gz
Binary file not shown.
Binary file modified languages/uk/index.html.gz
Binary file not shown.
Binary file modified languages/zh_CN/index.html.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
var target_firmware = "";
</script>
<script>
var web_ui_version = "2.1b58";
var web_ui_version = "2.1b59";
</script>
<script>
var direct_sd = false;
Expand Down
5 changes: 3 additions & 2 deletions www/js/scanwifidlg.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,10 @@ function process_scanWifi_answer(response_text) {
}

function select_ap_ssid(ssid_name) {
var val = document.getElementById("setting_" + ssid_item_scanwifi + "_" + ssid_subitem_scanwifi).value;
document.getElementById("setting_" + ssid_item_scanwifi + "_" + ssid_subitem_scanwifi).value = ssid_name;
document.getElementById("setting_" + ssid_item_scanwifi + "_" + ssid_subitem_scanwifi).focus();
setsettingchanged(ssid_item_scanwifi, ssid_subitem_scanwifi);
if (val != ssid_name)setsettingchanged(ssid_item_scanwifi, ssid_subitem_scanwifi);
closeModal("Ok");
}

Expand All @@ -93,4 +94,4 @@ function getscanWififailed(error_code, response) {

function scanwifidlg_close(response) {
//console.log(response);
}
}

0 comments on commit 1152ccf

Please sign in to comment.