adonespitogo / angular-base64-upload

Converts files from file input into base64 encoded models.
283 stars 121 forks source link

Append files when selecting files one at a time in case of multiple upload #91

Open rampaldheeraj opened 7 years ago

rampaldheeraj commented 7 years ago

Hi, Is it possible to append file when selecting one file at a time in case of multiple file upload?

<input ng-attr-id="files{{currentPage}}" type="file" ng-model="fields.items[currentPage -1].files" name="files" base-sixty-four-input multiple accept="image/*" class="form-control">

If I select multiple files, it works fine. But if I select one file at a time, it replaces the previous one/s with the newly selected file. Can we append the newly added files to the existing list?