onAgentAssign
Update event on acquire object will be triggered after the agent accept the chat.
window.acquire = window.acquire || [];
acquire.push(function(app){
app.on('update',function(){console.log(arguments)});
app.trigger('update',1,2,3);
});Last updated