Pause / resume evaporate.js

I am using Evaporate.js to upload files to an Amazon web service.

https://github.com/TTLabs/EvaporateJS This works fine, but I need to add pause / resume functionality to my app. Is it possible?

I noticed some empty functions are found at https://github.com/TTLabs/EvaporateJS/blob/master/evaporate.js

 _.pause = function(id){

 };

 _.resume = function(id){

 };

 _.forceRetry = function(){

 }; 

      

Can this feature be used?

+3


source to share


1 answer


I support EvaporateJS. Since version 1.5.0, Exaporate has paused / resumed.

There is a stable, reworked version 2.0 that is available that improves this support, but if you want to be the last stable release from version 1.5.0, you must install v1.6.3 for this support.



I highly recommend using v2.0.1.

+1


source







All Articles