Feedback Aide API Events
attach:success
Fired when the public method feedbackSessionUI.attach
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 attached, for example.
Examples
ui.on('attach:success', function () {
console.log('UI attached');
});