5.15.0

Retrying Uploads

Fine Uploader will automatically attempt to retry an upload if the enableAuto option is set to true:

var uploader = new qq.FineUploader({
    /* other required config options left out for brevity */

    retry: {
        enableAuto: true
    },
    callbacks: {
        onAutoRetry: function(id, name, attemptNumber) {
            ...
        }
    }
});