This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SproutCore 2.0 ToDo App in CoffeeScript | |
# BSD3, Jinjing Wang 2011 | |
# | |
# Ross Timson: Added in a few CoffeeScript syntactic niceties | |
Todos = SC.Application.create() | |
Todos.Todo = SC.Object.extend | |
title: null | |
isDone: false |