Prettified Code!

This commit is contained in:
DJ2LS 2023-02-12 15:00:08 +00:00 committed by GitHub Action
parent 951dce8adf
commit 675cf88401

View file

@ -566,7 +566,6 @@ window.addEventListener("DOMContentLoaded", () => {
} }
}); });
document document
.getElementById("hamlib_rigctld_start") .getElementById("hamlib_rigctld_start")
.addEventListener("click", () => { .addEventListener("click", () => {
@ -3077,8 +3076,6 @@ function loadSettings(elements) {
break; break;
} }
} }
} else if (element.tagName === "INPUT" && element.type === "text") { } else if (element.tagName === "INPUT" && element.type === "text") {
element.value = config[id]; element.value = config[id];
} else if (element.tagName === "INPUT" && element.type === "radio") { } else if (element.tagName === "INPUT" && element.type === "radio") {
@ -3090,7 +3087,7 @@ function loadSettings(elements) {
element.checked = false; element.checked = false;
} }
} else { } else {
console.log("nothing matched....") console.log("nothing matched....");
} }
}); });
} }