Feedback Aide API Events
save:success
Fires when the save event completes successfully.
You would want to be notified about this event firing, because you might want to update your application UI to indicate the save process has completed successfully, for example.
Examples
// Using the feedbackSession instance
feedbackSession.on('save:success', function () {
console.log('Save succeeded');
});
// Using the sessionUI instance
sessionUI.on('save:success', function () {
console.log('Save succeeded');
});