I just tested it in Chrome and it worked fine. (Which browser are you using?)
You may have downloaded so much time that you do not immediately see the update.
First of all: you should not change the properties in the .js file itself. Thus, you cannot upgrade to the new Dropzone without headaches. Therefore, configure your dropzone as recommended on the website.
About the download ... itโs very difficult to say what might be wrong if you donโt look at it. I suggest that you add some debugging information about status updates to make sure that your download is actually very slow.
Try this code and see if it solves your problem:
<form id="my-dropzone" action="/target" class="dropzone"></form> <script> Dropzone.options.myDropzone = { maxFilesize: 500, init: function() { this.on("uploadprogress", function(file, progress) { console.log("File progress", progress); }); } } </script>
If you can see the console exit at regular intervals, the download is fine, but it takes some time to finish.
enyo
source share