fires after an operation (add, upload, remove) performed on a file
id | string | the ID of the file |
status | string | the status of the operation: 'add', 'update', 'remove' |
file | object | the file object |
vault.events.on("Change", function(id,status,file){
console.log("file"+id);
console.log("operation"+status);
console.log(file);
});
Back to top