Browse Source

Allow multiple file uploads from dialog

pull/199/head
neeasade 8 years ago
committed by GitHub
parent
commit
62c77ad852
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/Squidex/app/features/assets/pages/assets-page.component.html

4
src/Squidex/app/features/assets/pages/assets-page.component.html

@ -33,9 +33,9 @@
<div class="file-drop-button"> <div class="file-drop-button">
<span class="btn btn-success" (click)="fileInput.click()"> <span class="btn btn-success" (click)="fileInput.click()">
<span>Select File</span> <span>Select File(s)</span>
<input class="file-drop-button-input" type="file" (change)="addFiles($event.target.files)" #fileInput /> <input class="file-drop-button-input" type="file" (change)="addFiles($event.target.files)" #fileInput multiple />
</span> </span>
</div> </div>

Loading…
Cancel
Save