onChatClosed
Fire the event with the parameters getting from the close event with the acquire object
window.acquire = window.acquire || [];
acquire.push(function(app){
app.on('close',function(){console.log(arguments)});
app.trigger('close',1,2,3);
})Last updated