From 884e4eee55994f9e6f4ff5777d6d30592ff31663 Mon Sep 17 00:00:00 2001
From: Jeremy Ashkenas
Here's the complete list of built-in Backbone events, with arguments.
You're also free to trigger your own events on Models, Collections and
- Views as you see fit.
+ Views as you see fit. The Backbone object itself mixes in Events,
+ and can be used to emit any global events that your application needs.
- Passing {silent: true} as an option will defer the event. - This is useful when you want to change attributes provisionally or rapidly, - without propagating the change through the rest of the system. - That said, silent doesn't mean that the change (and event) won't happen, + Passing {silent: true} as an option will defer the event. + This is useful when you want to change attributes provisionally or rapidly, + without propagating the change through the rest of the system. + That said, silent doesn't mean that the change (and event) won't happen, it's merely silenced until the next change.