My dropzone js is not showing image preview after the upload.
My js code is:
$(document).ready(function() {
Dropzone.autoDiscover = false;
Dropzone.options.myDropzone = {
maxFiles: 5,
createImageThumbnails: true,
acceptedFiles: ".jpeg,.jpg,.png,.gif",
uploadMultiple: true,
init: function() {
this.on("addedfile", function(file) {});
}
};
Also,I have changed css for the preview path (if that's the case), still no luck.
Please help.