mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-21 09:09:01 +00:00
Allow multiple files to be loaded via eject
This commit is contained in:
parent
3484d23e13
commit
857d37d868
1 changed files with 1 additions and 0 deletions
|
|
@ -34,6 +34,7 @@ export async function promptForFileReferences() {
|
|||
// Can this fail? Do we ever reject?
|
||||
const fileInput = document.createElement("input");
|
||||
fileInput.type = "file";
|
||||
fileInput.multiple = true;
|
||||
// Not entirely sure why this is needed, since the input
|
||||
// was just created, but somehow this helps prevent change
|
||||
// events from getting swallowed.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue