├── README.md ├── index.html ├── mock └── todos.json ├── scripts ├── app.js ├── controllers │ ├── main.js │ └── todo.js ├── directives │ └── todo.js └── services │ └── data.js ├── styles ├── checkbox-empty.svg ├── checkbox-filled.svg └── main.css ├── templates └── todo.html └── vendor └── angular.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/angular-basics/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/angular-basics/HEAD/index.html -------------------------------------------------------------------------------- /mock/todos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/angular-basics/HEAD/mock/todos.json -------------------------------------------------------------------------------- /scripts/app.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | angular.module('todoListApp', []); 4 | -------------------------------------------------------------------------------- /scripts/controllers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/angular-basics/HEAD/scripts/controllers/main.js -------------------------------------------------------------------------------- /scripts/controllers/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/angular-basics/HEAD/scripts/controllers/todo.js -------------------------------------------------------------------------------- /scripts/directives/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/angular-basics/HEAD/scripts/directives/todo.js -------------------------------------------------------------------------------- /scripts/services/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/angular-basics/HEAD/scripts/services/data.js -------------------------------------------------------------------------------- /styles/checkbox-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/angular-basics/HEAD/styles/checkbox-empty.svg -------------------------------------------------------------------------------- /styles/checkbox-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/angular-basics/HEAD/styles/checkbox-filled.svg -------------------------------------------------------------------------------- /styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/angular-basics/HEAD/styles/main.css -------------------------------------------------------------------------------- /templates/todo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/angular-basics/HEAD/templates/todo.html -------------------------------------------------------------------------------- /vendor/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treehouse/angular-basics/HEAD/vendor/angular.js --------------------------------------------------------------------------------