DragIn

fires when a file is dragged to another potential target in the queue

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

Example

vault.events.on("DragIn", 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