-
Notifications
You must be signed in to change notification settings - Fork 20
Open
Description
Feature request: support a general change
event when a field changes, and not just change:field
.
This would match ampersand-state
and ampersand-views
behaviours.
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
});
Metadata
Metadata
Assignees
Labels
No labels