Dropzone — Accept and Limits
Restrict file types, count, and size. Still no network upload.
Important JavaScript
new Dropzone("#limits-form", {
acceptedFiles: "image/*",
maxFiles: 2,
maxFilesize: 1,
autoProcessQueue: false,
});
Restrict file types, count, and size. Still no network upload.
new Dropzone("#limits-form", {
acceptedFiles: "image/*",
maxFiles: 2,
maxFilesize: 1,
autoProcessQueue: false,
});