Skip to content

Instantly share code, notes, and snippets.

@earobinson
Last active August 29, 2015 13:56
Show Gist options
  • Save earobinson/8985817 to your computer and use it in GitHub Desktop.
Save earobinson/8985817 to your computer and use it in GitHub Desktop.
class App.Views.MTodosAddButton extends Backbone.View
tagName : 'button'
className : 'btn btn-success'
events:
'click': 'addTodo'
render: ->
@$el.html('Add Todo')
@
addTodo: ->
App.Data.todos.add {title: 'Reap The Rewards From This Amazing Presentation'}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment