https://github.com/dimitarchristoff/epitome-todo
Implementation of todo app in Epitome for MooTools
https://github.com/dimitarchristoff/epitome-todo
Last synced: 10 months ago
JSON representation
Implementation of todo app in Epitome for MooTools
- Host: GitHub
- URL: https://github.com/dimitarchristoff/epitome-todo
- Owner: DimitarChristoff
- Created: 2012-07-10T16:29:50.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2012-12-16T09:23:31.000Z (over 13 years ago)
- Last Synced: 2025-03-23T03:32:41.713Z (about 1 year ago)
- Language: JavaScript
- Size: 332 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Epitome Todos
=============
This is a submodule repository with a todo demo of [Epitome](https://github.com/DimitarChristoff/Epitome) for MooTools
You should check it out from the main repository as a submodule:
```
git submodule init
git submodule update
```
Then just visit `[epitomeroot]/example/todo/epitome/` in your browser.
Structure
=========
The todo app is implemented to be sort of close to the Backbone.js implementation but with one substantial difference.
There are two views, one for the main app rendering and events (`todo-main.js`) and one for the todos themselves via
`todo-list/js`. Both of these views are bound to the collection in `todo-collection.js` and render their respective
parts of the app by listening to the same events on the collection.
Backbone instead have a single application view that uses a subview to create individual todo items as elements only and then renders it all at the same time.