Merge pull request #2024 from andreynering/dropzone-allow-all-files
Fixing Dropzone should accept all files when config is "*/*".
This commit is contained in:
commit
ffbeda077c
1 changed files with 1 additions and 1 deletions
|
@ -735,7 +735,7 @@ $(document).ready(function () {
|
|||
headers: {"X-Csrf-Token": csrf},
|
||||
maxFiles: $dropz.data('max-file'),
|
||||
maxFilesize: $dropz.data('max-size'),
|
||||
acceptedFiles: $dropz.data('accepts'),
|
||||
acceptedFiles: ($dropz.data('accepts') === '*/*') ? null : $dropz.data('accepts'),
|
||||
addRemoveLinks: true,
|
||||
dictDefaultMessage: $dropz.data('default-message'),
|
||||
dictInvalidFileType: $dropz.data('invalid-input-type'),
|
||||
|
|
Loading…
Reference in a new issue