Feedback Aide API Events
attach:success
Fires when the sessionUI.attach() method finishes rendering the UI.
You would want to be notified about this event firing, because you might want to update your application UI to indicate the Feedback Aide UI has been successfully rendered and loaded, for example.
Examples
sessionUI.on('attach:success', function () {
console.log('UI attached');
});