Feedback Aide API Events
save
Fires when the save() method is called.
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 started, for example.
Examples
// Using the feedbackSession instance
feedbackSession.on('save', function () {
console.log('Save started');
});
// Using the sessionUI instance
sessionUI.on('save', function () {
console.log('Save started');
});