I think it is strange if the upload of files is finished and you start another batch by draging on new files, that the progress will continue including the old files. To change that I altered the afterAll method:
function afterAll() {
global_progress = [];
return opts.afterAll();
}
Is this a valid solution or can this cause problems?
I think it is strange if the upload of files is finished and you start another batch by draging on new files, that the progress will continue including the old files. To change that I altered the
afterAll
method:Is this a valid solution or can this cause problems?