UploadBegin

fires when file upload begins

void UploadBegin(array files);
filesarraythe array of files to be uploaded

Example

vault.events.on("UploadBegin", function(files){
    console.log("Upload begins...");
});

Back to top