Answers for "dropzone upload on one file"

1

dropzone upload only two files

parallelUploads: 10
Posted by: Guest on April-14-2020
0

dropzone upload on one file

init: function() {
  this.on('addedfile', function(file) {
    if (this.files.length > 1) {
      this.removeFile(this.files[0]);
    }
  });
}
Posted by: Guest on October-19-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language