├── .gitignore ├── Buildfile ├── README └── apps └── todos ├── resources ├── stylesheets │ ├── todos.css │ └── todos_mobile.css └── templates │ └── todos.handlebars └── todos.js /.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | .bundle 3 | 4 | -------------------------------------------------------------------------------- /Buildfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sproutcore/Todos-Example/HEAD/Buildfile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sproutcore/Todos-Example/HEAD/README -------------------------------------------------------------------------------- /apps/todos/resources/stylesheets/todos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sproutcore/Todos-Example/HEAD/apps/todos/resources/stylesheets/todos.css -------------------------------------------------------------------------------- /apps/todos/resources/stylesheets/todos_mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sproutcore/Todos-Example/HEAD/apps/todos/resources/stylesheets/todos_mobile.css -------------------------------------------------------------------------------- /apps/todos/resources/templates/todos.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sproutcore/Todos-Example/HEAD/apps/todos/resources/templates/todos.handlebars -------------------------------------------------------------------------------- /apps/todos/todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sproutcore/Todos-Example/HEAD/apps/todos/todos.js --------------------------------------------------------------------------------