├── EOL04 └── rapp │ ├── .editorconfig │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json │ ├── karma.conf.js │ ├── package.json │ ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── components │ │ │ ├── recipe-list │ │ │ │ ├── recipe-list.component.css │ │ │ │ ├── recipe-list.component.html │ │ │ │ ├── recipe-list.component.spec.ts │ │ │ │ └── recipe-list.component.ts │ │ │ └── recipe-summary │ │ │ │ ├── recipe-summary.component.css │ │ │ │ ├── recipe-summary.component.html │ │ │ │ ├── recipe-summary.component.spec.ts │ │ │ │ └── recipe-summary.component.ts │ │ └── model │ │ │ └── recipe.ts │ ├── assets │ │ └── emptybowl.jpg │ ├── bootstrap.css │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json ├── EOL07 └── rapp │ ├── .editorconfig │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json │ ├── karma.conf.js │ ├── package.json │ ├── proxy.conf.json │ ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── components │ │ │ ├── edit-new-recipe │ │ │ │ ├── edit-new-recipe.component.css │ │ │ │ ├── edit-new-recipe.component.html │ │ │ │ ├── edit-new-recipe.component.spec.ts │ │ │ │ └── edit-new-recipe.component.ts │ │ │ ├── recipe-detals │ │ │ │ ├── recipe-detals.component.css │ │ │ │ ├── recipe-detals.component.html │ │ │ │ ├── recipe-detals.component.spec.ts │ │ │ │ └── recipe-detals.component.ts │ │ │ ├── recipe-list │ │ │ │ ├── recipe-list.component.css │ │ │ │ ├── recipe-list.component.html │ │ │ │ ├── recipe-list.component.spec.ts │ │ │ │ └── recipe-list.component.ts │ │ │ └── recipe-summary │ │ │ │ ├── recipe-summary.component.css │ │ │ │ ├── recipe-summary.component.html │ │ │ │ ├── recipe-summary.component.spec.ts │ │ │ │ └── recipe-summary.component.ts │ │ ├── model │ │ │ └── recipe.ts │ │ └── services │ │ │ ├── recipe.service.spec.ts │ │ │ └── recipe.service.ts │ ├── assets │ │ └── emptybowl.jpg │ ├── bootstrap.css │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json ├── EOL08.0 └── rapp │ ├── .editorconfig │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json │ ├── karma.conf.js │ ├── package.json │ ├── proxy.conf.json │ ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── components │ │ │ ├── edit-new-recipe │ │ │ │ ├── edit-new-recipe.component.css │ │ │ │ ├── edit-new-recipe.component.html │ │ │ │ ├── edit-new-recipe.component.spec.ts │ │ │ │ └── edit-new-recipe.component.ts │ │ │ ├── recipe-detals │ │ │ │ ├── recipe-detals.component.css │ │ │ │ ├── recipe-detals.component.html │ │ │ │ ├── recipe-detals.component.spec.ts │ │ │ │ └── recipe-detals.component.ts │ │ │ ├── recipe-list │ │ │ │ ├── recipe-list.component.css │ │ │ │ ├── recipe-list.component.html │ │ │ │ ├── recipe-list.component.spec.ts │ │ │ │ └── recipe-list.component.ts │ │ │ └── recipe-summary │ │ │ │ ├── recipe-summary.component.css │ │ │ │ ├── recipe-summary.component.html │ │ │ │ ├── recipe-summary.component.spec.ts │ │ │ │ └── recipe-summary.component.ts │ │ ├── model │ │ │ └── recipe.ts │ │ └── services │ │ │ ├── recipe.service.spec.ts │ │ │ └── recipe.service.ts │ ├── assets │ │ └── emptybowl.jpg │ ├── bootstrap.css │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json ├── EOL08 └── rapp │ ├── .editorconfig │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json │ ├── karma.conf.js │ ├── package.json │ ├── proxy.conf.json │ ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── components │ │ │ ├── edit-new-recipe │ │ │ │ ├── edit-new-recipe.component.css │ │ │ │ ├── edit-new-recipe.component.html │ │ │ │ ├── edit-new-recipe.component.spec.ts │ │ │ │ └── edit-new-recipe.component.ts │ │ │ ├── recipe-detals │ │ │ │ ├── recipe-detals.component.css │ │ │ │ ├── recipe-detals.component.html │ │ │ │ ├── recipe-detals.component.spec.ts │ │ │ │ └── recipe-detals.component.ts │ │ │ ├── recipe-list │ │ │ │ ├── recipe-list.component.css │ │ │ │ ├── recipe-list.component.html │ │ │ │ ├── recipe-list.component.spec.ts │ │ │ │ └── recipe-list.component.ts │ │ │ └── recipe-summary │ │ │ │ ├── recipe-summary.component.css │ │ │ │ ├── recipe-summary.component.html │ │ │ │ ├── recipe-summary.component.spec.ts │ │ │ │ └── recipe-summary.component.ts │ │ ├── model │ │ │ └── recipe.ts │ │ └── services │ │ │ ├── recipe.service.spec.ts │ │ │ └── recipe.service.ts │ ├── assets │ │ └── emptybowl.jpg │ ├── bootstrap.css │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json ├── EOL09 └── rapp │ ├── .editorconfig │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json │ ├── karma.conf.js │ ├── package.json │ ├── proxy.conf.json │ ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── components │ │ │ ├── edit-new-recipe │ │ │ │ ├── edit-new-recipe.component.css │ │ │ │ ├── edit-new-recipe.component.html │ │ │ │ ├── edit-new-recipe.component.spec.ts │ │ │ │ └── edit-new-recipe.component.ts │ │ │ ├── recipe-detals │ │ │ │ ├── recipe-detals.component.css │ │ │ │ ├── recipe-detals.component.html │ │ │ │ ├── recipe-detals.component.spec.ts │ │ │ │ └── recipe-detals.component.ts │ │ │ ├── recipe-list │ │ │ │ ├── recipe-list.component.css │ │ │ │ ├── recipe-list.component.html │ │ │ │ ├── recipe-list.component.spec.ts │ │ │ │ └── recipe-list.component.ts │ │ │ └── recipe-summary │ │ │ │ ├── recipe-summary.component.css │ │ │ │ ├── recipe-summary.component.html │ │ │ │ ├── recipe-summary.component.spec.ts │ │ │ │ └── recipe-summary.component.ts │ │ ├── misc │ │ │ ├── highlightnewrecipe.directive.ts │ │ │ └── swearing.pipe.ts │ │ ├── model │ │ │ └── recipe.ts │ │ └── services │ │ │ ├── recipe.service.spec.ts │ │ │ └── recipe.service.ts │ ├── assets │ │ └── emptybowl.jpg │ ├── bootstrap.css │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json ├── EOL10.1 └── rapp │ ├── .editorconfig │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json │ ├── karma.conf.js │ ├── package.json │ ├── proxy.conf.json │ ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── components │ │ │ ├── edit-new-recipe │ │ │ │ ├── edit-new-recipe.component.css │ │ │ │ ├── edit-new-recipe.component.html │ │ │ │ ├── edit-new-recipe.component.spec.ts │ │ │ │ └── edit-new-recipe.component.ts │ │ │ ├── recipe-detals │ │ │ │ ├── recipe-detals.component.css │ │ │ │ ├── recipe-detals.component.html │ │ │ │ ├── recipe-detals.component.spec.ts │ │ │ │ └── recipe-detals.component.ts │ │ │ ├── recipe-list │ │ │ │ ├── recipe-list.component.css │ │ │ │ ├── recipe-list.component.html │ │ │ │ ├── recipe-list.component.spec.ts │ │ │ │ └── recipe-list.component.ts │ │ │ └── recipe-summary │ │ │ │ ├── recipe-summary.component.css │ │ │ │ ├── recipe-summary.component.html │ │ │ │ ├── recipe-summary.component.spec.ts │ │ │ │ └── recipe-summary.component.ts │ │ ├── misc │ │ │ ├── highlightnewrecipe.directive.ts │ │ │ └── swearing.pipe.ts │ │ ├── model │ │ │ └── recipe.ts │ │ └── services │ │ │ ├── recipe.service.spec.ts │ │ │ └── recipe.service.ts │ ├── assets │ │ └── emptybowl.jpg │ ├── bootstrap.css │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json ├── EOL10.2 └── rapp │ ├── .editorconfig │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json │ ├── karma.conf.js │ ├── package.json │ ├── proxy.conf.json │ ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── components │ │ │ ├── edit-new-recipe │ │ │ │ ├── edit-new-recipe.component.css │ │ │ │ ├── edit-new-recipe.component.html │ │ │ │ ├── edit-new-recipe.component.spec.ts │ │ │ │ └── edit-new-recipe.component.ts │ │ │ ├── recipe-detals │ │ │ │ ├── recipe-detals.component.css │ │ │ │ ├── recipe-detals.component.html │ │ │ │ ├── recipe-detals.component.spec.ts │ │ │ │ └── recipe-detals.component.ts │ │ │ ├── recipe-list │ │ │ │ ├── recipe-list.component.css │ │ │ │ ├── recipe-list.component.html │ │ │ │ ├── recipe-list.component.spec.ts │ │ │ │ └── recipe-list.component.ts │ │ │ └── recipe-summary │ │ │ │ ├── recipe-summary.component.css │ │ │ │ ├── recipe-summary.component.html │ │ │ │ ├── recipe-summary.component.spec.ts │ │ │ │ └── recipe-summary.component.ts │ │ ├── misc │ │ │ ├── highlightnewrecipe.directive.ts │ │ │ └── swearing.pipe.ts │ │ ├── model │ │ │ └── recipe.ts │ │ └── services │ │ │ ├── recipe.service.spec.ts │ │ │ └── recipe.service.ts │ ├── assets │ │ └── emptybowl.jpg │ ├── bootstrap.css │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json ├── EOL11 └── testingapp │ ├── .editorconfig │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json │ ├── karma.conf.js │ ├── package.json │ ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── message │ │ │ ├── message.component.css │ │ │ ├── message.component.html │ │ │ ├── message.component.spec.ts │ │ │ └── message.component.ts │ │ ├── recipe.service.ts │ │ └── recipe.ts │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json └── README.md /EOL04/rapp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/.editorconfig -------------------------------------------------------------------------------- /EOL04/rapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/README.md -------------------------------------------------------------------------------- /EOL04/rapp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/angular.json -------------------------------------------------------------------------------- /EOL04/rapp/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/browserslist -------------------------------------------------------------------------------- /EOL04/rapp/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/e2e/protractor.conf.js -------------------------------------------------------------------------------- /EOL04/rapp/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /EOL04/rapp/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/e2e/src/app.po.ts -------------------------------------------------------------------------------- /EOL04/rapp/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/e2e/tsconfig.json -------------------------------------------------------------------------------- /EOL04/rapp/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/karma.conf.js -------------------------------------------------------------------------------- /EOL04/rapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/package.json -------------------------------------------------------------------------------- /EOL04/rapp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EOL04/rapp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/src/app/app.component.html -------------------------------------------------------------------------------- /EOL04/rapp/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /EOL04/rapp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/src/app/app.component.ts -------------------------------------------------------------------------------- /EOL04/rapp/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/src/app/app.module.ts -------------------------------------------------------------------------------- /EOL04/rapp/src/app/components/recipe-list/recipe-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/src/app/components/recipe-list/recipe-list.component.css -------------------------------------------------------------------------------- /EOL04/rapp/src/app/components/recipe-list/recipe-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/src/app/components/recipe-list/recipe-list.component.html -------------------------------------------------------------------------------- /EOL04/rapp/src/app/components/recipe-list/recipe-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/src/app/components/recipe-list/recipe-list.component.spec.ts -------------------------------------------------------------------------------- /EOL04/rapp/src/app/components/recipe-list/recipe-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/src/app/components/recipe-list/recipe-list.component.ts -------------------------------------------------------------------------------- /EOL04/rapp/src/app/components/recipe-summary/recipe-summary.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/src/app/components/recipe-summary/recipe-summary.component.css -------------------------------------------------------------------------------- /EOL04/rapp/src/app/components/recipe-summary/recipe-summary.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/src/app/components/recipe-summary/recipe-summary.component.html -------------------------------------------------------------------------------- /EOL04/rapp/src/app/components/recipe-summary/recipe-summary.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/src/app/components/recipe-summary/recipe-summary.component.spec.ts -------------------------------------------------------------------------------- /EOL04/rapp/src/app/components/recipe-summary/recipe-summary.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/src/app/components/recipe-summary/recipe-summary.component.ts -------------------------------------------------------------------------------- /EOL04/rapp/src/app/model/recipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/src/app/model/recipe.ts -------------------------------------------------------------------------------- /EOL04/rapp/src/assets/emptybowl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/src/assets/emptybowl.jpg -------------------------------------------------------------------------------- /EOL04/rapp/src/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/src/bootstrap.css -------------------------------------------------------------------------------- /EOL04/rapp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /EOL04/rapp/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/src/environments/environment.ts -------------------------------------------------------------------------------- /EOL04/rapp/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/src/favicon.ico -------------------------------------------------------------------------------- /EOL04/rapp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/src/index.html -------------------------------------------------------------------------------- /EOL04/rapp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/src/main.ts -------------------------------------------------------------------------------- /EOL04/rapp/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/src/polyfills.ts -------------------------------------------------------------------------------- /EOL04/rapp/src/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 10px; 3 | } -------------------------------------------------------------------------------- /EOL04/rapp/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/src/test.ts -------------------------------------------------------------------------------- /EOL04/rapp/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/tsconfig.app.json -------------------------------------------------------------------------------- /EOL04/rapp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/tsconfig.json -------------------------------------------------------------------------------- /EOL04/rapp/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/tsconfig.spec.json -------------------------------------------------------------------------------- /EOL04/rapp/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL04/rapp/tslint.json -------------------------------------------------------------------------------- /EOL07/rapp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/.editorconfig -------------------------------------------------------------------------------- /EOL07/rapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/README.md -------------------------------------------------------------------------------- /EOL07/rapp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/angular.json -------------------------------------------------------------------------------- /EOL07/rapp/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/browserslist -------------------------------------------------------------------------------- /EOL07/rapp/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/e2e/protractor.conf.js -------------------------------------------------------------------------------- /EOL07/rapp/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /EOL07/rapp/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/e2e/src/app.po.ts -------------------------------------------------------------------------------- /EOL07/rapp/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/e2e/tsconfig.json -------------------------------------------------------------------------------- /EOL07/rapp/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/karma.conf.js -------------------------------------------------------------------------------- /EOL07/rapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/package.json -------------------------------------------------------------------------------- /EOL07/rapp/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/proxy.conf.json -------------------------------------------------------------------------------- /EOL07/rapp/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/app/app.component.css -------------------------------------------------------------------------------- /EOL07/rapp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/app/app.component.html -------------------------------------------------------------------------------- /EOL07/rapp/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /EOL07/rapp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/app/app.component.ts -------------------------------------------------------------------------------- /EOL07/rapp/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/app/app.module.ts -------------------------------------------------------------------------------- /EOL07/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.css -------------------------------------------------------------------------------- /EOL07/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.html -------------------------------------------------------------------------------- /EOL07/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.spec.ts -------------------------------------------------------------------------------- /EOL07/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.ts -------------------------------------------------------------------------------- /EOL07/rapp/src/app/components/recipe-detals/recipe-detals.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/app/components/recipe-detals/recipe-detals.component.css -------------------------------------------------------------------------------- /EOL07/rapp/src/app/components/recipe-detals/recipe-detals.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/app/components/recipe-detals/recipe-detals.component.html -------------------------------------------------------------------------------- /EOL07/rapp/src/app/components/recipe-detals/recipe-detals.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/app/components/recipe-detals/recipe-detals.component.spec.ts -------------------------------------------------------------------------------- /EOL07/rapp/src/app/components/recipe-detals/recipe-detals.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/app/components/recipe-detals/recipe-detals.component.ts -------------------------------------------------------------------------------- /EOL07/rapp/src/app/components/recipe-list/recipe-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/app/components/recipe-list/recipe-list.component.css -------------------------------------------------------------------------------- /EOL07/rapp/src/app/components/recipe-list/recipe-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/app/components/recipe-list/recipe-list.component.html -------------------------------------------------------------------------------- /EOL07/rapp/src/app/components/recipe-list/recipe-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/app/components/recipe-list/recipe-list.component.spec.ts -------------------------------------------------------------------------------- /EOL07/rapp/src/app/components/recipe-list/recipe-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/app/components/recipe-list/recipe-list.component.ts -------------------------------------------------------------------------------- /EOL07/rapp/src/app/components/recipe-summary/recipe-summary.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/app/components/recipe-summary/recipe-summary.component.css -------------------------------------------------------------------------------- /EOL07/rapp/src/app/components/recipe-summary/recipe-summary.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/app/components/recipe-summary/recipe-summary.component.html -------------------------------------------------------------------------------- /EOL07/rapp/src/app/components/recipe-summary/recipe-summary.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/app/components/recipe-summary/recipe-summary.component.spec.ts -------------------------------------------------------------------------------- /EOL07/rapp/src/app/components/recipe-summary/recipe-summary.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/app/components/recipe-summary/recipe-summary.component.ts -------------------------------------------------------------------------------- /EOL07/rapp/src/app/model/recipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/app/model/recipe.ts -------------------------------------------------------------------------------- /EOL07/rapp/src/app/services/recipe.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/app/services/recipe.service.spec.ts -------------------------------------------------------------------------------- /EOL07/rapp/src/app/services/recipe.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/app/services/recipe.service.ts -------------------------------------------------------------------------------- /EOL07/rapp/src/assets/emptybowl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/assets/emptybowl.jpg -------------------------------------------------------------------------------- /EOL07/rapp/src/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/bootstrap.css -------------------------------------------------------------------------------- /EOL07/rapp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /EOL07/rapp/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/environments/environment.ts -------------------------------------------------------------------------------- /EOL07/rapp/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/favicon.ico -------------------------------------------------------------------------------- /EOL07/rapp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/index.html -------------------------------------------------------------------------------- /EOL07/rapp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/main.ts -------------------------------------------------------------------------------- /EOL07/rapp/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/polyfills.ts -------------------------------------------------------------------------------- /EOL07/rapp/src/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | } -------------------------------------------------------------------------------- /EOL07/rapp/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/src/test.ts -------------------------------------------------------------------------------- /EOL07/rapp/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/tsconfig.app.json -------------------------------------------------------------------------------- /EOL07/rapp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/tsconfig.json -------------------------------------------------------------------------------- /EOL07/rapp/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/tsconfig.spec.json -------------------------------------------------------------------------------- /EOL07/rapp/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL07/rapp/tslint.json -------------------------------------------------------------------------------- /EOL08.0/rapp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/.editorconfig -------------------------------------------------------------------------------- /EOL08.0/rapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/README.md -------------------------------------------------------------------------------- /EOL08.0/rapp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/angular.json -------------------------------------------------------------------------------- /EOL08.0/rapp/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/browserslist -------------------------------------------------------------------------------- /EOL08.0/rapp/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/e2e/protractor.conf.js -------------------------------------------------------------------------------- /EOL08.0/rapp/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /EOL08.0/rapp/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/e2e/src/app.po.ts -------------------------------------------------------------------------------- /EOL08.0/rapp/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/e2e/tsconfig.json -------------------------------------------------------------------------------- /EOL08.0/rapp/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/karma.conf.js -------------------------------------------------------------------------------- /EOL08.0/rapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/package.json -------------------------------------------------------------------------------- /EOL08.0/rapp/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/proxy.conf.json -------------------------------------------------------------------------------- /EOL08.0/rapp/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/app/app.component.css -------------------------------------------------------------------------------- /EOL08.0/rapp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/app/app.component.html -------------------------------------------------------------------------------- /EOL08.0/rapp/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /EOL08.0/rapp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/app/app.component.ts -------------------------------------------------------------------------------- /EOL08.0/rapp/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/app/app.module.ts -------------------------------------------------------------------------------- /EOL08.0/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.css -------------------------------------------------------------------------------- /EOL08.0/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.html -------------------------------------------------------------------------------- /EOL08.0/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.spec.ts -------------------------------------------------------------------------------- /EOL08.0/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.ts -------------------------------------------------------------------------------- /EOL08.0/rapp/src/app/components/recipe-detals/recipe-detals.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/app/components/recipe-detals/recipe-detals.component.css -------------------------------------------------------------------------------- /EOL08.0/rapp/src/app/components/recipe-detals/recipe-detals.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/app/components/recipe-detals/recipe-detals.component.html -------------------------------------------------------------------------------- /EOL08.0/rapp/src/app/components/recipe-detals/recipe-detals.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/app/components/recipe-detals/recipe-detals.component.spec.ts -------------------------------------------------------------------------------- /EOL08.0/rapp/src/app/components/recipe-detals/recipe-detals.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/app/components/recipe-detals/recipe-detals.component.ts -------------------------------------------------------------------------------- /EOL08.0/rapp/src/app/components/recipe-list/recipe-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/app/components/recipe-list/recipe-list.component.css -------------------------------------------------------------------------------- /EOL08.0/rapp/src/app/components/recipe-list/recipe-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/app/components/recipe-list/recipe-list.component.html -------------------------------------------------------------------------------- /EOL08.0/rapp/src/app/components/recipe-list/recipe-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/app/components/recipe-list/recipe-list.component.spec.ts -------------------------------------------------------------------------------- /EOL08.0/rapp/src/app/components/recipe-list/recipe-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/app/components/recipe-list/recipe-list.component.ts -------------------------------------------------------------------------------- /EOL08.0/rapp/src/app/components/recipe-summary/recipe-summary.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/app/components/recipe-summary/recipe-summary.component.css -------------------------------------------------------------------------------- /EOL08.0/rapp/src/app/components/recipe-summary/recipe-summary.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/app/components/recipe-summary/recipe-summary.component.html -------------------------------------------------------------------------------- /EOL08.0/rapp/src/app/components/recipe-summary/recipe-summary.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/app/components/recipe-summary/recipe-summary.component.spec.ts -------------------------------------------------------------------------------- /EOL08.0/rapp/src/app/components/recipe-summary/recipe-summary.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/app/components/recipe-summary/recipe-summary.component.ts -------------------------------------------------------------------------------- /EOL08.0/rapp/src/app/model/recipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/app/model/recipe.ts -------------------------------------------------------------------------------- /EOL08.0/rapp/src/app/services/recipe.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/app/services/recipe.service.spec.ts -------------------------------------------------------------------------------- /EOL08.0/rapp/src/app/services/recipe.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/app/services/recipe.service.ts -------------------------------------------------------------------------------- /EOL08.0/rapp/src/assets/emptybowl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/assets/emptybowl.jpg -------------------------------------------------------------------------------- /EOL08.0/rapp/src/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/bootstrap.css -------------------------------------------------------------------------------- /EOL08.0/rapp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /EOL08.0/rapp/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/environments/environment.ts -------------------------------------------------------------------------------- /EOL08.0/rapp/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/favicon.ico -------------------------------------------------------------------------------- /EOL08.0/rapp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/index.html -------------------------------------------------------------------------------- /EOL08.0/rapp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/main.ts -------------------------------------------------------------------------------- /EOL08.0/rapp/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/polyfills.ts -------------------------------------------------------------------------------- /EOL08.0/rapp/src/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | } -------------------------------------------------------------------------------- /EOL08.0/rapp/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/src/test.ts -------------------------------------------------------------------------------- /EOL08.0/rapp/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/tsconfig.app.json -------------------------------------------------------------------------------- /EOL08.0/rapp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/tsconfig.json -------------------------------------------------------------------------------- /EOL08.0/rapp/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/tsconfig.spec.json -------------------------------------------------------------------------------- /EOL08.0/rapp/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08.0/rapp/tslint.json -------------------------------------------------------------------------------- /EOL08/rapp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/.editorconfig -------------------------------------------------------------------------------- /EOL08/rapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/README.md -------------------------------------------------------------------------------- /EOL08/rapp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/angular.json -------------------------------------------------------------------------------- /EOL08/rapp/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/browserslist -------------------------------------------------------------------------------- /EOL08/rapp/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/e2e/protractor.conf.js -------------------------------------------------------------------------------- /EOL08/rapp/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /EOL08/rapp/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/e2e/src/app.po.ts -------------------------------------------------------------------------------- /EOL08/rapp/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/e2e/tsconfig.json -------------------------------------------------------------------------------- /EOL08/rapp/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/karma.conf.js -------------------------------------------------------------------------------- /EOL08/rapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/package.json -------------------------------------------------------------------------------- /EOL08/rapp/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/proxy.conf.json -------------------------------------------------------------------------------- /EOL08/rapp/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/app/app.component.css -------------------------------------------------------------------------------- /EOL08/rapp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/app/app.component.html -------------------------------------------------------------------------------- /EOL08/rapp/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /EOL08/rapp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/app/app.component.ts -------------------------------------------------------------------------------- /EOL08/rapp/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/app/app.module.ts -------------------------------------------------------------------------------- /EOL08/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.css -------------------------------------------------------------------------------- /EOL08/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.html -------------------------------------------------------------------------------- /EOL08/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.spec.ts -------------------------------------------------------------------------------- /EOL08/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.ts -------------------------------------------------------------------------------- /EOL08/rapp/src/app/components/recipe-detals/recipe-detals.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/app/components/recipe-detals/recipe-detals.component.css -------------------------------------------------------------------------------- /EOL08/rapp/src/app/components/recipe-detals/recipe-detals.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/app/components/recipe-detals/recipe-detals.component.html -------------------------------------------------------------------------------- /EOL08/rapp/src/app/components/recipe-detals/recipe-detals.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/app/components/recipe-detals/recipe-detals.component.spec.ts -------------------------------------------------------------------------------- /EOL08/rapp/src/app/components/recipe-detals/recipe-detals.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/app/components/recipe-detals/recipe-detals.component.ts -------------------------------------------------------------------------------- /EOL08/rapp/src/app/components/recipe-list/recipe-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/app/components/recipe-list/recipe-list.component.css -------------------------------------------------------------------------------- /EOL08/rapp/src/app/components/recipe-list/recipe-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/app/components/recipe-list/recipe-list.component.html -------------------------------------------------------------------------------- /EOL08/rapp/src/app/components/recipe-list/recipe-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/app/components/recipe-list/recipe-list.component.spec.ts -------------------------------------------------------------------------------- /EOL08/rapp/src/app/components/recipe-list/recipe-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/app/components/recipe-list/recipe-list.component.ts -------------------------------------------------------------------------------- /EOL08/rapp/src/app/components/recipe-summary/recipe-summary.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/app/components/recipe-summary/recipe-summary.component.css -------------------------------------------------------------------------------- /EOL08/rapp/src/app/components/recipe-summary/recipe-summary.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/app/components/recipe-summary/recipe-summary.component.html -------------------------------------------------------------------------------- /EOL08/rapp/src/app/components/recipe-summary/recipe-summary.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/app/components/recipe-summary/recipe-summary.component.spec.ts -------------------------------------------------------------------------------- /EOL08/rapp/src/app/components/recipe-summary/recipe-summary.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/app/components/recipe-summary/recipe-summary.component.ts -------------------------------------------------------------------------------- /EOL08/rapp/src/app/model/recipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/app/model/recipe.ts -------------------------------------------------------------------------------- /EOL08/rapp/src/app/services/recipe.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/app/services/recipe.service.spec.ts -------------------------------------------------------------------------------- /EOL08/rapp/src/app/services/recipe.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/app/services/recipe.service.ts -------------------------------------------------------------------------------- /EOL08/rapp/src/assets/emptybowl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/assets/emptybowl.jpg -------------------------------------------------------------------------------- /EOL08/rapp/src/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/bootstrap.css -------------------------------------------------------------------------------- /EOL08/rapp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /EOL08/rapp/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/environments/environment.ts -------------------------------------------------------------------------------- /EOL08/rapp/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/favicon.ico -------------------------------------------------------------------------------- /EOL08/rapp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/index.html -------------------------------------------------------------------------------- /EOL08/rapp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/main.ts -------------------------------------------------------------------------------- /EOL08/rapp/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/polyfills.ts -------------------------------------------------------------------------------- /EOL08/rapp/src/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | } -------------------------------------------------------------------------------- /EOL08/rapp/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/src/test.ts -------------------------------------------------------------------------------- /EOL08/rapp/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/tsconfig.app.json -------------------------------------------------------------------------------- /EOL08/rapp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/tsconfig.json -------------------------------------------------------------------------------- /EOL08/rapp/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/tsconfig.spec.json -------------------------------------------------------------------------------- /EOL08/rapp/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL08/rapp/tslint.json -------------------------------------------------------------------------------- /EOL09/rapp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/.editorconfig -------------------------------------------------------------------------------- /EOL09/rapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/README.md -------------------------------------------------------------------------------- /EOL09/rapp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/angular.json -------------------------------------------------------------------------------- /EOL09/rapp/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/browserslist -------------------------------------------------------------------------------- /EOL09/rapp/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/e2e/protractor.conf.js -------------------------------------------------------------------------------- /EOL09/rapp/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /EOL09/rapp/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/e2e/src/app.po.ts -------------------------------------------------------------------------------- /EOL09/rapp/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/e2e/tsconfig.json -------------------------------------------------------------------------------- /EOL09/rapp/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/karma.conf.js -------------------------------------------------------------------------------- /EOL09/rapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/package.json -------------------------------------------------------------------------------- /EOL09/rapp/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/proxy.conf.json -------------------------------------------------------------------------------- /EOL09/rapp/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/app/app.component.css -------------------------------------------------------------------------------- /EOL09/rapp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/app/app.component.html -------------------------------------------------------------------------------- /EOL09/rapp/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /EOL09/rapp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/app/app.component.ts -------------------------------------------------------------------------------- /EOL09/rapp/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/app/app.module.ts -------------------------------------------------------------------------------- /EOL09/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.css -------------------------------------------------------------------------------- /EOL09/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.html -------------------------------------------------------------------------------- /EOL09/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.spec.ts -------------------------------------------------------------------------------- /EOL09/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.ts -------------------------------------------------------------------------------- /EOL09/rapp/src/app/components/recipe-detals/recipe-detals.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/app/components/recipe-detals/recipe-detals.component.css -------------------------------------------------------------------------------- /EOL09/rapp/src/app/components/recipe-detals/recipe-detals.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/app/components/recipe-detals/recipe-detals.component.html -------------------------------------------------------------------------------- /EOL09/rapp/src/app/components/recipe-detals/recipe-detals.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/app/components/recipe-detals/recipe-detals.component.spec.ts -------------------------------------------------------------------------------- /EOL09/rapp/src/app/components/recipe-detals/recipe-detals.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/app/components/recipe-detals/recipe-detals.component.ts -------------------------------------------------------------------------------- /EOL09/rapp/src/app/components/recipe-list/recipe-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/app/components/recipe-list/recipe-list.component.css -------------------------------------------------------------------------------- /EOL09/rapp/src/app/components/recipe-list/recipe-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/app/components/recipe-list/recipe-list.component.html -------------------------------------------------------------------------------- /EOL09/rapp/src/app/components/recipe-list/recipe-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/app/components/recipe-list/recipe-list.component.spec.ts -------------------------------------------------------------------------------- /EOL09/rapp/src/app/components/recipe-list/recipe-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/app/components/recipe-list/recipe-list.component.ts -------------------------------------------------------------------------------- /EOL09/rapp/src/app/components/recipe-summary/recipe-summary.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/app/components/recipe-summary/recipe-summary.component.css -------------------------------------------------------------------------------- /EOL09/rapp/src/app/components/recipe-summary/recipe-summary.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/app/components/recipe-summary/recipe-summary.component.html -------------------------------------------------------------------------------- /EOL09/rapp/src/app/components/recipe-summary/recipe-summary.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/app/components/recipe-summary/recipe-summary.component.spec.ts -------------------------------------------------------------------------------- /EOL09/rapp/src/app/components/recipe-summary/recipe-summary.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/app/components/recipe-summary/recipe-summary.component.ts -------------------------------------------------------------------------------- /EOL09/rapp/src/app/misc/highlightnewrecipe.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/app/misc/highlightnewrecipe.directive.ts -------------------------------------------------------------------------------- /EOL09/rapp/src/app/misc/swearing.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/app/misc/swearing.pipe.ts -------------------------------------------------------------------------------- /EOL09/rapp/src/app/model/recipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/app/model/recipe.ts -------------------------------------------------------------------------------- /EOL09/rapp/src/app/services/recipe.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/app/services/recipe.service.spec.ts -------------------------------------------------------------------------------- /EOL09/rapp/src/app/services/recipe.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/app/services/recipe.service.ts -------------------------------------------------------------------------------- /EOL09/rapp/src/assets/emptybowl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/assets/emptybowl.jpg -------------------------------------------------------------------------------- /EOL09/rapp/src/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/bootstrap.css -------------------------------------------------------------------------------- /EOL09/rapp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /EOL09/rapp/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/environments/environment.ts -------------------------------------------------------------------------------- /EOL09/rapp/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/favicon.ico -------------------------------------------------------------------------------- /EOL09/rapp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/index.html -------------------------------------------------------------------------------- /EOL09/rapp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/main.ts -------------------------------------------------------------------------------- /EOL09/rapp/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/polyfills.ts -------------------------------------------------------------------------------- /EOL09/rapp/src/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | } -------------------------------------------------------------------------------- /EOL09/rapp/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/src/test.ts -------------------------------------------------------------------------------- /EOL09/rapp/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/tsconfig.app.json -------------------------------------------------------------------------------- /EOL09/rapp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/tsconfig.json -------------------------------------------------------------------------------- /EOL09/rapp/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/tsconfig.spec.json -------------------------------------------------------------------------------- /EOL09/rapp/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL09/rapp/tslint.json -------------------------------------------------------------------------------- /EOL10.1/rapp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/.editorconfig -------------------------------------------------------------------------------- /EOL10.1/rapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/README.md -------------------------------------------------------------------------------- /EOL10.1/rapp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/angular.json -------------------------------------------------------------------------------- /EOL10.1/rapp/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/browserslist -------------------------------------------------------------------------------- /EOL10.1/rapp/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/e2e/protractor.conf.js -------------------------------------------------------------------------------- /EOL10.1/rapp/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /EOL10.1/rapp/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/e2e/src/app.po.ts -------------------------------------------------------------------------------- /EOL10.1/rapp/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/e2e/tsconfig.json -------------------------------------------------------------------------------- /EOL10.1/rapp/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/karma.conf.js -------------------------------------------------------------------------------- /EOL10.1/rapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/package.json -------------------------------------------------------------------------------- /EOL10.1/rapp/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/proxy.conf.json -------------------------------------------------------------------------------- /EOL10.1/rapp/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/app/app.component.css -------------------------------------------------------------------------------- /EOL10.1/rapp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/app/app.component.html -------------------------------------------------------------------------------- /EOL10.1/rapp/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /EOL10.1/rapp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/app/app.component.ts -------------------------------------------------------------------------------- /EOL10.1/rapp/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/app/app.module.ts -------------------------------------------------------------------------------- /EOL10.1/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.css -------------------------------------------------------------------------------- /EOL10.1/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.html -------------------------------------------------------------------------------- /EOL10.1/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.spec.ts -------------------------------------------------------------------------------- /EOL10.1/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.ts -------------------------------------------------------------------------------- /EOL10.1/rapp/src/app/components/recipe-detals/recipe-detals.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/app/components/recipe-detals/recipe-detals.component.css -------------------------------------------------------------------------------- /EOL10.1/rapp/src/app/components/recipe-detals/recipe-detals.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/app/components/recipe-detals/recipe-detals.component.html -------------------------------------------------------------------------------- /EOL10.1/rapp/src/app/components/recipe-detals/recipe-detals.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/app/components/recipe-detals/recipe-detals.component.spec.ts -------------------------------------------------------------------------------- /EOL10.1/rapp/src/app/components/recipe-detals/recipe-detals.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/app/components/recipe-detals/recipe-detals.component.ts -------------------------------------------------------------------------------- /EOL10.1/rapp/src/app/components/recipe-list/recipe-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/app/components/recipe-list/recipe-list.component.css -------------------------------------------------------------------------------- /EOL10.1/rapp/src/app/components/recipe-list/recipe-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/app/components/recipe-list/recipe-list.component.html -------------------------------------------------------------------------------- /EOL10.1/rapp/src/app/components/recipe-list/recipe-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/app/components/recipe-list/recipe-list.component.spec.ts -------------------------------------------------------------------------------- /EOL10.1/rapp/src/app/components/recipe-list/recipe-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/app/components/recipe-list/recipe-list.component.ts -------------------------------------------------------------------------------- /EOL10.1/rapp/src/app/components/recipe-summary/recipe-summary.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/app/components/recipe-summary/recipe-summary.component.css -------------------------------------------------------------------------------- /EOL10.1/rapp/src/app/components/recipe-summary/recipe-summary.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/app/components/recipe-summary/recipe-summary.component.html -------------------------------------------------------------------------------- /EOL10.1/rapp/src/app/components/recipe-summary/recipe-summary.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/app/components/recipe-summary/recipe-summary.component.spec.ts -------------------------------------------------------------------------------- /EOL10.1/rapp/src/app/components/recipe-summary/recipe-summary.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/app/components/recipe-summary/recipe-summary.component.ts -------------------------------------------------------------------------------- /EOL10.1/rapp/src/app/misc/highlightnewrecipe.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/app/misc/highlightnewrecipe.directive.ts -------------------------------------------------------------------------------- /EOL10.1/rapp/src/app/misc/swearing.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/app/misc/swearing.pipe.ts -------------------------------------------------------------------------------- /EOL10.1/rapp/src/app/model/recipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/app/model/recipe.ts -------------------------------------------------------------------------------- /EOL10.1/rapp/src/app/services/recipe.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/app/services/recipe.service.spec.ts -------------------------------------------------------------------------------- /EOL10.1/rapp/src/app/services/recipe.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/app/services/recipe.service.ts -------------------------------------------------------------------------------- /EOL10.1/rapp/src/assets/emptybowl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/assets/emptybowl.jpg -------------------------------------------------------------------------------- /EOL10.1/rapp/src/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/bootstrap.css -------------------------------------------------------------------------------- /EOL10.1/rapp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /EOL10.1/rapp/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/environments/environment.ts -------------------------------------------------------------------------------- /EOL10.1/rapp/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/favicon.ico -------------------------------------------------------------------------------- /EOL10.1/rapp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/index.html -------------------------------------------------------------------------------- /EOL10.1/rapp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/main.ts -------------------------------------------------------------------------------- /EOL10.1/rapp/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/polyfills.ts -------------------------------------------------------------------------------- /EOL10.1/rapp/src/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | } -------------------------------------------------------------------------------- /EOL10.1/rapp/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/src/test.ts -------------------------------------------------------------------------------- /EOL10.1/rapp/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/tsconfig.app.json -------------------------------------------------------------------------------- /EOL10.1/rapp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/tsconfig.json -------------------------------------------------------------------------------- /EOL10.1/rapp/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/tsconfig.spec.json -------------------------------------------------------------------------------- /EOL10.1/rapp/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.1/rapp/tslint.json -------------------------------------------------------------------------------- /EOL10.2/rapp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/.editorconfig -------------------------------------------------------------------------------- /EOL10.2/rapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/README.md -------------------------------------------------------------------------------- /EOL10.2/rapp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/angular.json -------------------------------------------------------------------------------- /EOL10.2/rapp/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/browserslist -------------------------------------------------------------------------------- /EOL10.2/rapp/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/e2e/protractor.conf.js -------------------------------------------------------------------------------- /EOL10.2/rapp/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /EOL10.2/rapp/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/e2e/src/app.po.ts -------------------------------------------------------------------------------- /EOL10.2/rapp/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/e2e/tsconfig.json -------------------------------------------------------------------------------- /EOL10.2/rapp/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/karma.conf.js -------------------------------------------------------------------------------- /EOL10.2/rapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/package.json -------------------------------------------------------------------------------- /EOL10.2/rapp/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/proxy.conf.json -------------------------------------------------------------------------------- /EOL10.2/rapp/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/app/app.component.css -------------------------------------------------------------------------------- /EOL10.2/rapp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/app/app.component.html -------------------------------------------------------------------------------- /EOL10.2/rapp/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /EOL10.2/rapp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/app/app.component.ts -------------------------------------------------------------------------------- /EOL10.2/rapp/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/app/app.module.ts -------------------------------------------------------------------------------- /EOL10.2/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.css -------------------------------------------------------------------------------- /EOL10.2/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.html -------------------------------------------------------------------------------- /EOL10.2/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.spec.ts -------------------------------------------------------------------------------- /EOL10.2/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/app/components/edit-new-recipe/edit-new-recipe.component.ts -------------------------------------------------------------------------------- /EOL10.2/rapp/src/app/components/recipe-detals/recipe-detals.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/app/components/recipe-detals/recipe-detals.component.css -------------------------------------------------------------------------------- /EOL10.2/rapp/src/app/components/recipe-detals/recipe-detals.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/app/components/recipe-detals/recipe-detals.component.html -------------------------------------------------------------------------------- /EOL10.2/rapp/src/app/components/recipe-detals/recipe-detals.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/app/components/recipe-detals/recipe-detals.component.spec.ts -------------------------------------------------------------------------------- /EOL10.2/rapp/src/app/components/recipe-detals/recipe-detals.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/app/components/recipe-detals/recipe-detals.component.ts -------------------------------------------------------------------------------- /EOL10.2/rapp/src/app/components/recipe-list/recipe-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/app/components/recipe-list/recipe-list.component.css -------------------------------------------------------------------------------- /EOL10.2/rapp/src/app/components/recipe-list/recipe-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/app/components/recipe-list/recipe-list.component.html -------------------------------------------------------------------------------- /EOL10.2/rapp/src/app/components/recipe-list/recipe-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/app/components/recipe-list/recipe-list.component.spec.ts -------------------------------------------------------------------------------- /EOL10.2/rapp/src/app/components/recipe-list/recipe-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/app/components/recipe-list/recipe-list.component.ts -------------------------------------------------------------------------------- /EOL10.2/rapp/src/app/components/recipe-summary/recipe-summary.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/app/components/recipe-summary/recipe-summary.component.css -------------------------------------------------------------------------------- /EOL10.2/rapp/src/app/components/recipe-summary/recipe-summary.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/app/components/recipe-summary/recipe-summary.component.html -------------------------------------------------------------------------------- /EOL10.2/rapp/src/app/components/recipe-summary/recipe-summary.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/app/components/recipe-summary/recipe-summary.component.spec.ts -------------------------------------------------------------------------------- /EOL10.2/rapp/src/app/components/recipe-summary/recipe-summary.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/app/components/recipe-summary/recipe-summary.component.ts -------------------------------------------------------------------------------- /EOL10.2/rapp/src/app/misc/highlightnewrecipe.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/app/misc/highlightnewrecipe.directive.ts -------------------------------------------------------------------------------- /EOL10.2/rapp/src/app/misc/swearing.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/app/misc/swearing.pipe.ts -------------------------------------------------------------------------------- /EOL10.2/rapp/src/app/model/recipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/app/model/recipe.ts -------------------------------------------------------------------------------- /EOL10.2/rapp/src/app/services/recipe.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/app/services/recipe.service.spec.ts -------------------------------------------------------------------------------- /EOL10.2/rapp/src/app/services/recipe.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/app/services/recipe.service.ts -------------------------------------------------------------------------------- /EOL10.2/rapp/src/assets/emptybowl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/assets/emptybowl.jpg -------------------------------------------------------------------------------- /EOL10.2/rapp/src/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/bootstrap.css -------------------------------------------------------------------------------- /EOL10.2/rapp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /EOL10.2/rapp/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/environments/environment.ts -------------------------------------------------------------------------------- /EOL10.2/rapp/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/favicon.ico -------------------------------------------------------------------------------- /EOL10.2/rapp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/index.html -------------------------------------------------------------------------------- /EOL10.2/rapp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/main.ts -------------------------------------------------------------------------------- /EOL10.2/rapp/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/polyfills.ts -------------------------------------------------------------------------------- /EOL10.2/rapp/src/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | } -------------------------------------------------------------------------------- /EOL10.2/rapp/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/src/test.ts -------------------------------------------------------------------------------- /EOL10.2/rapp/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/tsconfig.app.json -------------------------------------------------------------------------------- /EOL10.2/rapp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/tsconfig.json -------------------------------------------------------------------------------- /EOL10.2/rapp/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/tsconfig.spec.json -------------------------------------------------------------------------------- /EOL10.2/rapp/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL10.2/rapp/tslint.json -------------------------------------------------------------------------------- /EOL11/testingapp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/.editorconfig -------------------------------------------------------------------------------- /EOL11/testingapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/README.md -------------------------------------------------------------------------------- /EOL11/testingapp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/angular.json -------------------------------------------------------------------------------- /EOL11/testingapp/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/browserslist -------------------------------------------------------------------------------- /EOL11/testingapp/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/e2e/protractor.conf.js -------------------------------------------------------------------------------- /EOL11/testingapp/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /EOL11/testingapp/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/e2e/src/app.po.ts -------------------------------------------------------------------------------- /EOL11/testingapp/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/e2e/tsconfig.json -------------------------------------------------------------------------------- /EOL11/testingapp/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/karma.conf.js -------------------------------------------------------------------------------- /EOL11/testingapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/package.json -------------------------------------------------------------------------------- /EOL11/testingapp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EOL11/testingapp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/src/app/app.component.html -------------------------------------------------------------------------------- /EOL11/testingapp/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /EOL11/testingapp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/src/app/app.component.ts -------------------------------------------------------------------------------- /EOL11/testingapp/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/src/app/app.module.ts -------------------------------------------------------------------------------- /EOL11/testingapp/src/app/message/message.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EOL11/testingapp/src/app/message/message.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/src/app/message/message.component.html -------------------------------------------------------------------------------- /EOL11/testingapp/src/app/message/message.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/src/app/message/message.component.spec.ts -------------------------------------------------------------------------------- /EOL11/testingapp/src/app/message/message.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/src/app/message/message.component.ts -------------------------------------------------------------------------------- /EOL11/testingapp/src/app/recipe.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/src/app/recipe.service.ts -------------------------------------------------------------------------------- /EOL11/testingapp/src/app/recipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/src/app/recipe.ts -------------------------------------------------------------------------------- /EOL11/testingapp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /EOL11/testingapp/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/src/environments/environment.ts -------------------------------------------------------------------------------- /EOL11/testingapp/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/src/favicon.ico -------------------------------------------------------------------------------- /EOL11/testingapp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/src/index.html -------------------------------------------------------------------------------- /EOL11/testingapp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/src/main.ts -------------------------------------------------------------------------------- /EOL11/testingapp/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/src/polyfills.ts -------------------------------------------------------------------------------- /EOL11/testingapp/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/src/styles.css -------------------------------------------------------------------------------- /EOL11/testingapp/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/src/test.ts -------------------------------------------------------------------------------- /EOL11/testingapp/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/tsconfig.app.json -------------------------------------------------------------------------------- /EOL11/testingapp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/tsconfig.json -------------------------------------------------------------------------------- /EOL11/testingapp/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/tsconfig.spec.json -------------------------------------------------------------------------------- /EOL11/testingapp/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/EOL11/testingapp/tslint.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcwan/AngularLiveLessons/HEAD/README.md --------------------------------------------------------------------------------