We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5a35e94 + 55531f8 commit 94759ceCopy full SHA for 94759ce
example/todolist.jsx
@@ -26,7 +26,8 @@ TodoItem.define({
26
_.bindAll( this, 'remove', 'addChildren' );
27
28
// Sync done state with subitems across the tree...
29
- // There won't be loop, 'change' is never fired if there are no actual change.
+ // There won't be infinite loop, 'change' is never fired if there are no actual change.
30
+ // Event handlers are transactional, single change event will be bubbled up.
31
this.listenTo( this, {
32
'change:subitems' : () => {
33
let { subitems } = this;
0 commit comments