Browse Source
Allow multiple file uploads from dialog
pull/199/head
neeasade
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
3 deletions
-
src/Squidex/app/features/assets/pages/assets-page.component.html
|
|
|
@ -33,9 +33,9 @@ |
|
|
|
|
|
|
|
<div class="file-drop-button"> |
|
|
|
<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> |
|
|
|
</div> |
|
|
|
|
|
|
|
|