added details section & options/parameters section

This commit is contained in:
2025-01-19 00:28:13 +01:00
parent 701e9f42d5
commit 86f7f1c66d
4 changed files with 173 additions and 8 deletions
+21 -1
View File
@@ -1 +1,21 @@
CURRENT_PAGE = PAGES.LICENSE
CURRENT_PAGE = PAGES.LICENSE
const sillyInput = document.getElementById("sillyInput")
const sillyNumberValue = document.getElementById("sillyNumberValue")
function prependZero(number) {
if (number < 10)
return "0" + number
else
return number
}
sillyInput.oninput = function() {
sillyNumberValue.innerHTML = prependZero(this.value)
}
function onLoadLicense() {
sillyNumberValue.innerHTML = prependZero(sillyInput.value)
}