flowjs / flow.js

A JavaScript library providing multiple simultaneous, stable, fault-tolerant and resumable/restartable file uploads via the HTML5 File API.
Other
2.96k stars 346 forks source link

Flow shows file select dialog multiple times #339

Closed elmonty closed 3 years ago

elmonty commented 3 years ago

I am trying to use Flow to upload a single video file. Here's my code:

flow.assignBrowse(fileLabel, false, true, {accept:'video/*'});

When I run it and select the file selection label, the open dialog appears. As soon as I select a file and click "Open", the open dialog closes and reappears.

How do I get it to appear just once?