UploadFail

fires if the file upload failed

void UploadFail(object file);
fileobjectthe file object

Example

vault.events.on("UploadFail", function(file){
    console.log("Upload failed");
});

Back to top