diff --git a/examples/todomvc-flux/js/stores/TodoStore.js b/examples/todomvc-flux/js/stores/TodoStore.js index 38c13b7d68..cadd1b176a 100644 --- a/examples/todomvc-flux/js/stores/TodoStore.js +++ b/examples/todomvc-flux/js/stores/TodoStore.js @@ -181,6 +181,6 @@ AppDispatcher.register(function(payload) { TodoStore.emitChange(); return true; // No errors. Needed by promise in Dispatcher. -}) +}); module.exports = TodoStore;