More UI polishing

This commit is contained in:
Jackzie 2025-04-17 16:06:18 -05:00
parent f54cbbc8bd
commit a1d740aa05
9 changed files with 190 additions and 64 deletions

View file

@ -1,6 +1,16 @@
document.addEventListener('DOMContentLoaded', () => {
const addDropdown = document.getElementById("add-dropdown")
addDropdown.classList.remove("is-hidden")
document.querySelector("#file-checkbox-all").addEventListener("input", (e) => {
const checked = e.target.checked
console.log("checked", checked)
document.querySelectorAll(".file-checkbox").forEach(el => {
el.checked = checked
})
})
const readyhiddenItems = document.getElementsByClassName("readyhidden");
for (let i = 0; i < readyhiddenItems.length; i++) {
readyhiddenItems.item(i).classList.remove("readyhidden")
}
document.getElementById("modal-prompt-form")
@ -72,4 +82,4 @@ async function touchSubmit(event) {
}
function upload(type) {
}
}