Skip to content
Snippets Groups Projects
Commit 3c12dccc authored by Neuber, Eugen Ramon's avatar Neuber, Eugen Ramon :speech_balloon: Committed by Reiter, Christoph
Browse files

Set "accept='allowed-mime-types" on file input

as described on https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/accept
but does not work on (my) Linux ...
parent 56ef4bc1
No related branches found
No related tags found
No related merge requests found
...@@ -17,7 +17,7 @@ export class FileUpload extends ScopedElementsMixin(VPULitElement) { ...@@ -17,7 +17,7 @@ export class FileUpload extends ScopedElementsMixin(VPULitElement) {
this.lang = 'de'; this.lang = 'de';
this.url = ''; this.url = '';
this.dropArea = null; this.dropArea = null;
this.allowedMimeTypes = ''; this.allowedMimeTypes = '*/*';
this.text = ''; this.text = '';
this.buttonLabel = ''; this.buttonLabel = '';
this.uploadInProgress = false; this.uploadInProgress = false;
...@@ -348,7 +348,12 @@ export class FileUpload extends ScopedElementsMixin(VPULitElement) { ...@@ -348,7 +348,12 @@ export class FileUpload extends ScopedElementsMixin(VPULitElement) {
<div id="dropArea"> <div id="dropArea">
<div class="my-form" title="${this.uploadInProgress ? i18n.t('upload-disabled-title') : ''}"> <div class="my-form" title="${this.uploadInProgress ? i18n.t('upload-disabled-title') : ''}">
<p>${this.text || i18n.t('intro')}</p> <p>${this.text || i18n.t('intro')}</p>
<input ?disabled="${this.uploadInProgress || this.disabled}" type="file" id="fileElem" multiple name='file'> <input ?disabled="${this.uploadInProgress || this.disabled}"
type="file"
id="fileElem"
multiple
accept="${this.allowedMimeTypes}"
name='file'>
<label class="button is-primary" for="fileElem" ?disabled="${this.disabled}"> <label class="button is-primary" for="fileElem" ?disabled="${this.disabled}">
<vpu-icon style="display: ${this.uploadInProgress ? "inline-block" : "none"}" name="lock"></vpu-icon> <vpu-icon style="display: ${this.uploadInProgress ? "inline-block" : "none"}" name="lock"></vpu-icon>
${this.buttonLabel || i18n.t('upload-label')} ${this.buttonLabel || i18n.t('upload-label')}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment