diff --git a/examples/todoApp/js/todoAppFirebaseExplicit.js b/examples/todoApp/js/todoAppFirebaseExplicit.js index df65ce9..eebe029 100644 --- a/examples/todoApp/js/todoAppFirebaseExplicit.js +++ b/examples/todoApp/js/todoAppFirebaseExplicit.js @@ -32,7 +32,7 @@ var TodoApp2 = React.createClass({ var item = childSnapshot.val(); item['.key'] = childSnapshot.key; items.push(item); - }.bind(this)); + }); this.setState({ items: items