Grading API Events
save:complete
Fired when the public method gradingApp.save()
is completed.
You would want to be notified about this event firing, because you might want to update your application UI to indicate that the saving of the updated score or feedback has completed, for example.
Examples
gradingApp.on('save:complete', function () {
console.log('save complete');
});