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
change
Feature request: support a general change event when a field changes, and not just change:field.
change:field
This would match ampersand-state and ampersand-views behaviours.
ampersand-state
ampersand-views
Currently I do this by:
view.on('all', function(eventType) { if (/^change/.test(eventType)) { //match all change events } });
which is less than ideal.
It would be nice to simply do:
view.on('change', function() { match all change events });
This issue is related to #8, #20, and #42.
The text was updated successfully, but these errors were encountered:
+1
Sorry, something went wrong.
See also #69
No branches or pull requests
Feature request: support a general
change
event when a field changes, and not justchange:field
.This would match
ampersand-state
andampersand-views
behaviours.Currently I do this by:
which is less than ideal.
It would be nice to simply do:
This issue is related to #8, #20, and #42.
The text was updated successfully, but these errors were encountered: