DragOut

fires when a file is dragged out of a potential target in the queue

void DragOut(object data,Event e);
dataobjectdata object
eEventa native event object

Example

vault.events.on("DragOut", function(data, events){
    // your logic here
});

Related samples

Details

The data object can contain the following parameters:

See also
Change log

added in v4.0

Back to top