From 84135bc6053eab86c7e9d27bbfb05c09dd0f2a4c Mon Sep 17 00:00:00 2001 From: Bojan Mihelac Date: Wed, 18 Jun 2014 10:34:53 +0200 Subject: [PATCH] Missing semicolon in TodoStore.js --- examples/todomvc-flux/js/stores/TodoStore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;