detach

detaches a handler from an event (which was attached before by the on() method)

void detach(string name, [any context] );
namestringthe name of event to detach
contextanya context marker

Example

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

Details

By default detach() removes all event handlers from the target event. You can detach particular event handlers by using the context marker.

var marker = "any"; // you can use any string|object value
 
vault.events.on("UploadComplete", handler1);
vault.events.on("UploadComplete", handler2, marker);
// the next command will delete only handler2
vault.events.detach("UploadComplete", marker);
See also
Back to top