ItemMouseOver

fires on moving the mouse pointer over a file in the queue

void ItemMouseOver(string id,Event e);
idstringthe id of a file
eEventa native event object

Example

vault.events.on("ItemMouseOver", function(id, e){
    // your logic here
});

Related samples

Change log

added in v4.0

Back to top