Skip to content

Instantly share code, notes, and snippets.

@jasonporritt
Created May 6, 2011 20:46
Show Gist options
  • Save jasonporritt/959750 to your computer and use it in GitHub Desktop.
Save jasonporritt/959750 to your computer and use it in GitHub Desktop.
CoffeeScript declaration of Backbone.View subclass
class window.TodoView extends Backbone.View
tagName: "li"
template: _.template($('#item-template').html())
events:
"click .check" : "toggleDone"
"dblclick div.todo-content" : "edit"
"click span.todo-destroy" : "clear"
"keypress .todo-input" : "updateOnEnter"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment