switch link checking library, fixes #2, initial config window

This commit is contained in:
2024-06-03 12:15:41 +02:00
parent bd2c44c373
commit 0b76d1a624
2 changed files with 0 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
window.addEventListener('DOMContentLoaded', () => {
const replaceText = (selector, text) => {
const element = document.getElementById(selector)
if (element) element.innerText = text
}
for (const type of ['chrome', 'node', 'electron']) {
replaceText(`${type}-version`, process.versions[type])
}
})