We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In https://marionette.gitbooks.io/marionette-guides/content/en/views/index.html there is a description of a post-save model event called afterSave that is triggered in the success callback for the save event. But the code displayed appears to have an error.
afterSave
Should this line in the save success callback model.trigger('save', model, {}); be model.trigger('afterSave', model, {});?
model.trigger('save', model, {});
model.trigger('afterSave', model, {});
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In https://marionette.gitbooks.io/marionette-guides/content/en/views/index.html there is a description of a post-save model event called
afterSave
that is triggered in the success callback for the save event. But the code displayed appears to have an error.Should this line in the save success callback
model.trigger('save', model, {});
bemodel.trigger('afterSave', model, {});
?The text was updated successfully, but these errors were encountered: