feat: add support for series

This commit is contained in:
2025-04-30 21:16:34 +02:00
committed by Louis Heredero
parent fef6c727cb
commit d0723e5179
11 changed files with 339 additions and 27 deletions

View File

@ -5,7 +5,7 @@ function addOptions(files) {
defaultOpt.innerText = "----- Select a file -----"
defaultOpt.value = ""
select.appendChild(defaultOpt)
files.forEach(file => {
files.sort().forEach(file => {
const option = document.createElement("option")
option.innerText = file
option.value = file