getting rid of localstorage for display format

This commit is contained in:
Justin 2023-01-30 13:15:21 +08:00 committed by GitHub
parent 7879c6918e
commit 87e82bb2b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1563,7 +1563,6 @@ let bottomRowText = document.querySelector("#bottom-row-text");
displayFormatBtn.addEventListener("click", () => { displayFormatBtn.addEventListener("click", () => {
selectedDisplayText.innerText = displayFormatDropDown.value; selectedDisplayText.innerText = displayFormatDropDown.value;
localStorage.setItem("displayFormat", displayFormatDropDown.value);
if (selectedDisplayText.innerText === "Professional Two Rows") { if (selectedDisplayText.innerText === "Professional Two Rows") {
topRowText.style.display = "inline"; topRowText.style.display = "inline";
bottomRowText.style.display = "inline"; bottomRowText.style.display = "inline";
@ -1588,7 +1587,6 @@ let resetSettingsBtn = document.querySelector("#reset-btn")
resetSettingsBtn.addEventListener("click", () => { resetSettingsBtn.addEventListener("click", () => {
selectedDisplayText.innerText = "Standard Scrolling"; selectedDisplayText.innerText = "Standard Scrolling";
localStorage.setItem("displayFormat", "Standard Scrolling");
topRowText.style.display = "none"; topRowText.style.display = "none";
bottomRowText.style.display = "none"; bottomRowText.style.display = "none";
secondRow.style.display = "none"; secondRow.style.display = "none";
@ -1685,8 +1683,8 @@ window.onload = () => {
//getWifiPass && (wifiPassInput.value = getWifiPass); //getWifiPass && (wifiPassInput.value = getWifiPass);
//getCountryCode && (countryCodeInput.value = getCountryCode); //getCountryCode && (countryCodeInput.value = getCountryCode);
let getDispayFormat = localStorage.getItem("displayFormat"); // let getDispayFormat = localStorage.getItem("displayFormat");
getDispayFormat && (displayFormatDropDown.value = getDispayFormat); // getDispayFormat && (displayFormatDropDown.value = getDispayFormat);
selectedDisplayText.innerText = displayFormatDropDown.value; selectedDisplayText.innerText = displayFormatDropDown.value;
// getInputAnimation && (inputAnimation.value = getInputAnimation); // getInputAnimation && (inputAnimation.value = getInputAnimation);