UploadComplete

fires when upload is completed

void UploadComplete(array files);
filesarrayfile objects that were uploaded

Example

vault.events.on("UploadComplete", function(files){
    console.log(files);
});

Details

The event fires independent of the upload result (fail or success).

Back to top