cinely / mule-uploader

Stubborn HTML5 Amazon S3 uploader
http://mule-uploader.com/
MIT License
223 stars 43 forks source link

Settings to disable the chunking notification #78

Open ArcadeRenegade opened 7 years ago

ArcadeRenegade commented 7 years ago

Hi, would it be possible to please add a setting to disable the chunking notification (the /chunk_loaded/ ajax call)?

Thanks.

ArcadeRenegade commented 7 years ago

I worked around this by setting the notify_chunk_uploaded function to a new empty one in my on_init.

         on_init: function () {
                this.notify_chunk_uploaded = function(a) {};
                $('#log').prepend("Uploader initialized\n");
            },