Feedback Aide API Events
save
Fired when the public method save
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
feedbackSession.on('save', function () {
console.log('save started');
});