summaryrefslogtreecommitdiffstats
path: root/public
diff options
context:
space:
mode:
authorAndrey Nering <andrey.nering@gmail.com>2015-11-23 13:46:58 -0200
committerAndrey Nering <andrey.nering@gmail.com>2015-11-23 13:46:58 -0200
commit880849a28382f70b975f5ac471946377c3fcd1c3 (patch)
tree33993d0f876d2650a765887e054855364b531f75 /public
parentb2fb7e3fd27f360e65ee60b93cad7d5d9832f818 (diff)
downloadgitea-880849a28382f70b975f5ac471946377c3fcd1c3.tar.gz
gitea-880849a28382f70b975f5ac471946377c3fcd1c3.zip
Fixing Dropzone should accept all files when config is "*/*".
Diffstat (limited to 'public')
-rw-r--r--public/js/gogs.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/js/gogs.js b/public/js/gogs.js
index 599f363787..5002f64118 100644
--- a/public/js/gogs.js
+++ b/public/js/gogs.js
@@ -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'),