app.css |
|
313 |
app.js |
|
216 |
bootstrap.js |
eslint no-console:0 |
533 |
controller.js |
Takes a model and view and acts as the controller between them
@constructor
@param {object} model The model instance
@param {object} view The view instance
|
6397 |
controller.test.js |
|
133 |
helpers.js |
|
1720 |
index.html |
ES2015 + Babel + Webpack TodoMVC example |
1552 |
memory.js |
number of stored items.
|
1796 |
model.js |
Creates a new Model instance and hooks up the storage.
@constructor
@param {object} storage A reference to the client side storage class
|
2970 |
store.js |
Creates a new client side storage object and will create an empty
collection if no collection already exists.
@param {string} name The name of our DB we want to use
@param {function} callback Our fake DB uses callbacks because in
real life you probably would be making AJAX calls
|
4105 |
template.js |
Sets up defaults for all the Template methods such as a default template
@constructor
|
2636 |
todo.js |
Sets up a brand new Todo list.
@param {string} name The name of your new to do list.
|
890 |
view.js |
eslint no-invalid-this: 0, complexity:[2, 9] |
5554 |