enable wi-fi saving
This commit is contained in:
parent
248149a976
commit
a110be31d2
@ -1385,23 +1385,23 @@ let countryCodeInput = document.getElementById("country-code-input");
|
||||
let joinNetworkBtn = document.querySelector("#join-network-btn");
|
||||
let connectedText = document.querySelector("#connected-text");
|
||||
|
||||
// joinNetworkBtn.addEventListener("click", () => {
|
||||
// localStorage.setItem("wifiSsid", wifiSsidInput.value);
|
||||
// localStorage.setItem("wifiPass", wifiPassInput.value);
|
||||
// localStorage.setItem("countryCode", countryCodeInput.value);
|
||||
joinNetworkBtn.addEventListener("click", () => {
|
||||
localStorage.setItem("wifiSsid", wifiSsidInput.value);
|
||||
localStorage.setItem("wifiPass", wifiPassInput.value);
|
||||
localStorage.setItem("countryCode", countryCodeInput.value);
|
||||
|
||||
// connectedText.style.display = "block";
|
||||
// setTimeout(() => {
|
||||
// connectedText.style.display = "none";
|
||||
// }, 2000);
|
||||
|
||||
// data = {country:countryCodeInput.value, ssid:wifiSsidInput.value, pwd:wifiPassInput.value}
|
||||
data = {country:countryCodeInput.value, ssid:wifiSsidInput.value, pwd:wifiPassInput.value}
|
||||
|
||||
// fetch("/wifi", {
|
||||
// method: "POST",
|
||||
// body: JSON.stringify(data),
|
||||
// });
|
||||
// });
|
||||
fetch("/wifi", {
|
||||
method: "POST",
|
||||
body: JSON.stringify(data),
|
||||
});
|
||||
});
|
||||
|
||||
// change display format
|
||||
let displayFormatDropDown = document.querySelector("#inputDisplayFormat");
|
||||
|
Loading…
Reference in New Issue
Block a user