I'm currently utilizing Dropzone.js along with Angular.js for image uploads. However, I haven't been able to figure out a way to upload thumbnails to my server.
.dropzone({
url: "/gallery/add",
maxFilesize: 100,
paramName: "uploadfile",
createImageThumbnails: true,
thumbnailWidth: 200,
init: function() {
this.on('addedfile', function(file) {
// potentially add code here
});
this.on('thumbnail', function(file){
// or here
});
}
});
The issue seems to specifically be related to thumbnails.