UI issue with <input type="file" multiple /> ; occurred after selecting multiple files but only one filename is shown to the user causing them to be confused.
The easy fix is to change setFilename to detect multiple and use $el.files to get a comma delimited list of filenames.
UI issue with
<input type="file" multiple />
; occurred after selecting multiple files but only one filename is shown to the user causing them to be confused.The easy fix is to change
setFilename
to detectmultiple
and use$el.files
to get a comma delimited list of filenames.