Commit fe67bb30 authored by Nicolas Widart's avatar Nicolas Widart

Merge pull request #102 from bartdeslagmulder/patch-1

Fix early redirect when uploading multiple files
parents 4e3e92b8 4d5468b0
......@@ -6,7 +6,7 @@ $( document ).ready(function() {
maxFilesize: maxFilesize,
acceptedFiles : acceptedFiles
});
myDropzone.on("success", function(file, http) {
myDropzone.on("queuecomplete", function(file, http) {
window.setTimeout(function(){
location.reload();
}, 1000);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment