Feedback Aide API Events
feedback:complete
Fires when all the user feedback is generated successfully.
You would want to be notified about this event firing, because you might want to update your application UI to indicate the feedback generation has ended, for example.
Examples
// Using the feedbackSession instance
feedbackSession.on('feedback:complete', function () {
console.log('Feedback generated.');
});
// Using the sessionUI instance
sessionUI.on('feedback:complete', function () {
console.log('Feedback generated.');
});