Skip to content

Instantly share code, notes, and snippets.

@flarnie
Created December 9, 2014 00:43
Show Gist options
  • Save flarnie/105b87c9ff6eae161059 to your computer and use it in GitHub Desktop.
Save flarnie/105b87c9ff6eae161059 to your computer and use it in GitHub Desktop.
Flux TodoApp Sample 4
// The 'create' method creates an action of type 'TODO_CREATE'
// ...
var TodoActions = {
/**
* @param {string} text
*/
create: function(text) {
AppDispatcher.handleViewAction({
actionType: TodoConstants.TODO_CREATE,
text: text
});
},
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment