other JS changes

This commit is contained in:
Anthony Stirling
2023-12-16 10:35:45 +00:00
parent e8de5739fa
commit 74f6cd63f4
2 changed files with 16 additions and 6 deletions

View File

@@ -31,7 +31,11 @@ async function getLatestReleaseVersion() {
async function checkForUpdate() {
// Initialize the update button as hidden
document.getElementById("update-btn").style.display = "none";
var updateBtn = document.getElementById("update-btn");
if (updateBtn !== null) {
updateBtn.style.display = "none";
}
const latestVersion = await getLatestReleaseVersion();
console.log("latestVersion=" + latestVersion)
@@ -45,4 +49,7 @@ async function checkForUpdate() {
}
}
checkForUpdate();
document.addEventListener('DOMContentLoaded', (event) => {
checkForUpdate();
});