Skip to content

Instantly share code, notes, and snippets.

@tribou
Last active August 29, 2015 14:24
Show Gist options
  • Save tribou/392943c8c92eedf2b1ec to your computer and use it in GitHub Desktop.
Save tribou/392943c8c92eedf2b1ec to your computer and use it in GitHub Desktop.
case AppConstants.GET_RANDOM_RESPONSE:
// Construct the new todo string
var newTodo = 'Call '
+ action.response.results[0].user.name.first
+ ' about real estate in '
+ action.response.results[0].user.location.city;
// Add the new todo to the list
_store.list.push(newTodo);
TodoStore.emit(CHANGE_EVENT);
break;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment