├── .editorconfig ├── .gitignore ├── .jshintrc ├── .travis.yml ├── LICENSE ├── README.md ├── app ├── bootstrap.ts ├── css │ ├── .gitkeep │ ├── animations.css │ └── app.css ├── img │ ├── .gitkeep │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings.png │ └── phones │ │ ├── dell-streak-7.0.jpg │ │ ├── dell-streak-7.1.jpg │ │ ├── dell-streak-7.2.jpg │ │ ├── dell-streak-7.3.jpg │ │ ├── dell-streak-7.4.jpg │ │ ├── dell-venue.0.jpg │ │ ├── dell-venue.1.jpg │ │ ├── dell-venue.2.jpg │ │ ├── dell-venue.3.jpg │ │ ├── dell-venue.4.jpg │ │ ├── dell-venue.5.jpg │ │ ├── droid-2-global-by-motorola.0.jpg │ │ ├── droid-2-global-by-motorola.1.jpg │ │ ├── droid-2-global-by-motorola.2.jpg │ │ ├── droid-pro-by-motorola.0.jpg │ │ ├── droid-pro-by-motorola.1.jpg │ │ ├── lg-axis.0.jpg │ │ ├── lg-axis.1.jpg │ │ ├── lg-axis.2.jpg │ │ ├── motorola-atrix-4g.0.jpg │ │ ├── motorola-atrix-4g.1.jpg │ │ ├── motorola-atrix-4g.2.jpg │ │ ├── motorola-atrix-4g.3.jpg │ │ ├── motorola-bravo-with-motoblur.0.jpg │ │ ├── motorola-bravo-with-motoblur.1.jpg │ │ ├── motorola-bravo-with-motoblur.2.jpg │ │ ├── motorola-charm-with-motoblur.0.jpg │ │ ├── motorola-charm-with-motoblur.1.jpg │ │ ├── motorola-charm-with-motoblur.2.jpg │ │ ├── motorola-defy-with-motoblur.0.jpg │ │ ├── motorola-defy-with-motoblur.1.jpg │ │ ├── motorola-defy-with-motoblur.2.jpg │ │ ├── motorola-xoom-with-wi-fi.0.jpg │ │ ├── motorola-xoom-with-wi-fi.1.jpg │ │ ├── motorola-xoom-with-wi-fi.2.jpg │ │ ├── motorola-xoom-with-wi-fi.3.jpg │ │ ├── motorola-xoom-with-wi-fi.4.jpg │ │ ├── motorola-xoom-with-wi-fi.5.jpg │ │ ├── motorola-xoom.0.jpg │ │ ├── motorola-xoom.1.jpg │ │ ├── motorola-xoom.2.jpg │ │ ├── nexus-s.0.jpg │ │ ├── nexus-s.1.jpg │ │ ├── nexus-s.2.jpg │ │ ├── nexus-s.3.jpg │ │ ├── samsung-galaxy-tab.0.jpg │ │ ├── samsung-galaxy-tab.1.jpg │ │ ├── samsung-galaxy-tab.2.jpg │ │ ├── samsung-galaxy-tab.3.jpg │ │ ├── samsung-galaxy-tab.4.jpg │ │ ├── samsung-galaxy-tab.5.jpg │ │ ├── samsung-galaxy-tab.6.jpg │ │ ├── samsung-gem.0.jpg │ │ ├── samsung-gem.1.jpg │ │ ├── samsung-gem.2.jpg │ │ ├── samsung-mesmerize-a-galaxy-s-phone.0.jpg │ │ ├── samsung-mesmerize-a-galaxy-s-phone.1.jpg │ │ ├── samsung-mesmerize-a-galaxy-s-phone.2.jpg │ │ ├── samsung-mesmerize-a-galaxy-s-phone.3.jpg │ │ ├── samsung-showcase-a-galaxy-s-phone.0.jpg │ │ ├── samsung-showcase-a-galaxy-s-phone.1.jpg │ │ ├── samsung-showcase-a-galaxy-s-phone.2.jpg │ │ ├── samsung-transform.0.jpg │ │ ├── samsung-transform.1.jpg │ │ ├── samsung-transform.2.jpg │ │ ├── samsung-transform.3.jpg │ │ ├── samsung-transform.4.jpg │ │ ├── sanyo-zio.0.jpg │ │ ├── sanyo-zio.1.jpg │ │ ├── sanyo-zio.2.jpg │ │ ├── t-mobile-g2.0.jpg │ │ ├── t-mobile-g2.1.jpg │ │ ├── t-mobile-g2.2.jpg │ │ ├── t-mobile-mytouch-4g.0.jpg │ │ ├── t-mobile-mytouch-4g.1.jpg │ │ ├── t-mobile-mytouch-4g.2.jpg │ │ ├── t-mobile-mytouch-4g.3.jpg │ │ ├── t-mobile-mytouch-4g.4.jpg │ │ └── t-mobile-mytouch-4g.5.jpg ├── index.html ├── js │ ├── app.component.ts │ ├── app.config.ts │ ├── app.module.ts │ ├── core │ │ ├── checkmark.pipe.spec.ts │ │ ├── checkmark.pipe.ts │ │ ├── core.module.ts │ │ ├── phone.service.spec.ts │ │ └── phone.service.ts │ ├── phone_detail │ │ ├── phone-detail.component.spec.ts │ │ ├── phone-detail.component.ts │ │ ├── phone-detail.html │ │ ├── phone-detail.module.ts │ │ └── phone.animation.ts │ └── phone_list │ │ ├── phone-list.component.spec.ts │ │ ├── phone-list.component.ts │ │ ├── phone-list.html │ │ └── phone-list.module.ts └── phones │ ├── dell-streak-7.json │ ├── dell-venue.json │ ├── droid-2-global-by-motorola.json │ ├── droid-pro-by-motorola.json │ ├── lg-axis.json │ ├── motorola-atrix-4g.json │ ├── motorola-bravo-with-motoblur.json │ ├── motorola-charm-with-motoblur.json │ ├── motorola-defy-with-motoblur.json │ ├── motorola-xoom-with-wi-fi.json │ ├── motorola-xoom.json │ ├── nexus-s.json │ ├── phones.json │ ├── samsung-galaxy-tab.json │ ├── samsung-gem.json │ ├── samsung-mesmerize-a-galaxy-s-phone.json │ ├── samsung-showcase-a-galaxy-s-phone.json │ ├── samsung-transform.json │ ├── sanyo-zio.json │ ├── t-mobile-g2.json │ └── t-mobile-mytouch-4g.json ├── karma.conf.js ├── package.json ├── spec.bundle.js ├── test ├── e2e │ ├── README.md │ └── scenarios.js ├── karma.conf.js └── protractor-conf.js ├── tsconfig.json ├── typings.json └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/README.md -------------------------------------------------------------------------------- /app/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/bootstrap.ts -------------------------------------------------------------------------------- /app/css/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/css/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/css/animations.css -------------------------------------------------------------------------------- /app/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/css/app.css -------------------------------------------------------------------------------- /app/img/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /app/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /app/img/phones/dell-streak-7.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/dell-streak-7.0.jpg -------------------------------------------------------------------------------- /app/img/phones/dell-streak-7.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/dell-streak-7.1.jpg -------------------------------------------------------------------------------- /app/img/phones/dell-streak-7.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/dell-streak-7.2.jpg -------------------------------------------------------------------------------- /app/img/phones/dell-streak-7.3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/dell-streak-7.3.jpg -------------------------------------------------------------------------------- /app/img/phones/dell-streak-7.4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/dell-streak-7.4.jpg -------------------------------------------------------------------------------- /app/img/phones/dell-venue.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/dell-venue.0.jpg -------------------------------------------------------------------------------- /app/img/phones/dell-venue.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/dell-venue.1.jpg -------------------------------------------------------------------------------- /app/img/phones/dell-venue.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/dell-venue.2.jpg -------------------------------------------------------------------------------- /app/img/phones/dell-venue.3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/dell-venue.3.jpg -------------------------------------------------------------------------------- /app/img/phones/dell-venue.4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/dell-venue.4.jpg -------------------------------------------------------------------------------- /app/img/phones/dell-venue.5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/dell-venue.5.jpg -------------------------------------------------------------------------------- /app/img/phones/droid-2-global-by-motorola.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/droid-2-global-by-motorola.0.jpg -------------------------------------------------------------------------------- /app/img/phones/droid-2-global-by-motorola.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/droid-2-global-by-motorola.1.jpg -------------------------------------------------------------------------------- /app/img/phones/droid-2-global-by-motorola.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/droid-2-global-by-motorola.2.jpg -------------------------------------------------------------------------------- /app/img/phones/droid-pro-by-motorola.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/droid-pro-by-motorola.0.jpg -------------------------------------------------------------------------------- /app/img/phones/droid-pro-by-motorola.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/droid-pro-by-motorola.1.jpg -------------------------------------------------------------------------------- /app/img/phones/lg-axis.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/lg-axis.0.jpg -------------------------------------------------------------------------------- /app/img/phones/lg-axis.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/lg-axis.1.jpg -------------------------------------------------------------------------------- /app/img/phones/lg-axis.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/lg-axis.2.jpg -------------------------------------------------------------------------------- /app/img/phones/motorola-atrix-4g.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/motorola-atrix-4g.0.jpg -------------------------------------------------------------------------------- /app/img/phones/motorola-atrix-4g.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/motorola-atrix-4g.1.jpg -------------------------------------------------------------------------------- /app/img/phones/motorola-atrix-4g.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/motorola-atrix-4g.2.jpg -------------------------------------------------------------------------------- /app/img/phones/motorola-atrix-4g.3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/motorola-atrix-4g.3.jpg -------------------------------------------------------------------------------- /app/img/phones/motorola-bravo-with-motoblur.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/motorola-bravo-with-motoblur.0.jpg -------------------------------------------------------------------------------- /app/img/phones/motorola-bravo-with-motoblur.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/motorola-bravo-with-motoblur.1.jpg -------------------------------------------------------------------------------- /app/img/phones/motorola-bravo-with-motoblur.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/motorola-bravo-with-motoblur.2.jpg -------------------------------------------------------------------------------- /app/img/phones/motorola-charm-with-motoblur.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/motorola-charm-with-motoblur.0.jpg -------------------------------------------------------------------------------- /app/img/phones/motorola-charm-with-motoblur.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/motorola-charm-with-motoblur.1.jpg -------------------------------------------------------------------------------- /app/img/phones/motorola-charm-with-motoblur.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/motorola-charm-with-motoblur.2.jpg -------------------------------------------------------------------------------- /app/img/phones/motorola-defy-with-motoblur.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/motorola-defy-with-motoblur.0.jpg -------------------------------------------------------------------------------- /app/img/phones/motorola-defy-with-motoblur.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/motorola-defy-with-motoblur.1.jpg -------------------------------------------------------------------------------- /app/img/phones/motorola-defy-with-motoblur.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/motorola-defy-with-motoblur.2.jpg -------------------------------------------------------------------------------- /app/img/phones/motorola-xoom-with-wi-fi.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/motorola-xoom-with-wi-fi.0.jpg -------------------------------------------------------------------------------- /app/img/phones/motorola-xoom-with-wi-fi.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/motorola-xoom-with-wi-fi.1.jpg -------------------------------------------------------------------------------- /app/img/phones/motorola-xoom-with-wi-fi.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/motorola-xoom-with-wi-fi.2.jpg -------------------------------------------------------------------------------- /app/img/phones/motorola-xoom-with-wi-fi.3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/motorola-xoom-with-wi-fi.3.jpg -------------------------------------------------------------------------------- /app/img/phones/motorola-xoom-with-wi-fi.4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/motorola-xoom-with-wi-fi.4.jpg -------------------------------------------------------------------------------- /app/img/phones/motorola-xoom-with-wi-fi.5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/motorola-xoom-with-wi-fi.5.jpg -------------------------------------------------------------------------------- /app/img/phones/motorola-xoom.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/motorola-xoom.0.jpg -------------------------------------------------------------------------------- /app/img/phones/motorola-xoom.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/motorola-xoom.1.jpg -------------------------------------------------------------------------------- /app/img/phones/motorola-xoom.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/motorola-xoom.2.jpg -------------------------------------------------------------------------------- /app/img/phones/nexus-s.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/nexus-s.0.jpg -------------------------------------------------------------------------------- /app/img/phones/nexus-s.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/nexus-s.1.jpg -------------------------------------------------------------------------------- /app/img/phones/nexus-s.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/nexus-s.2.jpg -------------------------------------------------------------------------------- /app/img/phones/nexus-s.3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/nexus-s.3.jpg -------------------------------------------------------------------------------- /app/img/phones/samsung-galaxy-tab.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/samsung-galaxy-tab.0.jpg -------------------------------------------------------------------------------- /app/img/phones/samsung-galaxy-tab.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/samsung-galaxy-tab.1.jpg -------------------------------------------------------------------------------- /app/img/phones/samsung-galaxy-tab.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/samsung-galaxy-tab.2.jpg -------------------------------------------------------------------------------- /app/img/phones/samsung-galaxy-tab.3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/samsung-galaxy-tab.3.jpg -------------------------------------------------------------------------------- /app/img/phones/samsung-galaxy-tab.4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/samsung-galaxy-tab.4.jpg -------------------------------------------------------------------------------- /app/img/phones/samsung-galaxy-tab.5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/samsung-galaxy-tab.5.jpg -------------------------------------------------------------------------------- /app/img/phones/samsung-galaxy-tab.6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/samsung-galaxy-tab.6.jpg -------------------------------------------------------------------------------- /app/img/phones/samsung-gem.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/samsung-gem.0.jpg -------------------------------------------------------------------------------- /app/img/phones/samsung-gem.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/samsung-gem.1.jpg -------------------------------------------------------------------------------- /app/img/phones/samsung-gem.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/samsung-gem.2.jpg -------------------------------------------------------------------------------- /app/img/phones/samsung-mesmerize-a-galaxy-s-phone.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/samsung-mesmerize-a-galaxy-s-phone.0.jpg -------------------------------------------------------------------------------- /app/img/phones/samsung-mesmerize-a-galaxy-s-phone.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/samsung-mesmerize-a-galaxy-s-phone.1.jpg -------------------------------------------------------------------------------- /app/img/phones/samsung-mesmerize-a-galaxy-s-phone.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/samsung-mesmerize-a-galaxy-s-phone.2.jpg -------------------------------------------------------------------------------- /app/img/phones/samsung-mesmerize-a-galaxy-s-phone.3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/samsung-mesmerize-a-galaxy-s-phone.3.jpg -------------------------------------------------------------------------------- /app/img/phones/samsung-showcase-a-galaxy-s-phone.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/samsung-showcase-a-galaxy-s-phone.0.jpg -------------------------------------------------------------------------------- /app/img/phones/samsung-showcase-a-galaxy-s-phone.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/samsung-showcase-a-galaxy-s-phone.1.jpg -------------------------------------------------------------------------------- /app/img/phones/samsung-showcase-a-galaxy-s-phone.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/samsung-showcase-a-galaxy-s-phone.2.jpg -------------------------------------------------------------------------------- /app/img/phones/samsung-transform.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/samsung-transform.0.jpg -------------------------------------------------------------------------------- /app/img/phones/samsung-transform.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/samsung-transform.1.jpg -------------------------------------------------------------------------------- /app/img/phones/samsung-transform.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/samsung-transform.2.jpg -------------------------------------------------------------------------------- /app/img/phones/samsung-transform.3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/samsung-transform.3.jpg -------------------------------------------------------------------------------- /app/img/phones/samsung-transform.4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/samsung-transform.4.jpg -------------------------------------------------------------------------------- /app/img/phones/sanyo-zio.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/sanyo-zio.0.jpg -------------------------------------------------------------------------------- /app/img/phones/sanyo-zio.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/sanyo-zio.1.jpg -------------------------------------------------------------------------------- /app/img/phones/sanyo-zio.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/sanyo-zio.2.jpg -------------------------------------------------------------------------------- /app/img/phones/t-mobile-g2.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/t-mobile-g2.0.jpg -------------------------------------------------------------------------------- /app/img/phones/t-mobile-g2.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/t-mobile-g2.1.jpg -------------------------------------------------------------------------------- /app/img/phones/t-mobile-g2.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/t-mobile-g2.2.jpg -------------------------------------------------------------------------------- /app/img/phones/t-mobile-mytouch-4g.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/t-mobile-mytouch-4g.0.jpg -------------------------------------------------------------------------------- /app/img/phones/t-mobile-mytouch-4g.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/t-mobile-mytouch-4g.1.jpg -------------------------------------------------------------------------------- /app/img/phones/t-mobile-mytouch-4g.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/t-mobile-mytouch-4g.2.jpg -------------------------------------------------------------------------------- /app/img/phones/t-mobile-mytouch-4g.3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/t-mobile-mytouch-4g.3.jpg -------------------------------------------------------------------------------- /app/img/phones/t-mobile-mytouch-4g.4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/t-mobile-mytouch-4g.4.jpg -------------------------------------------------------------------------------- /app/img/phones/t-mobile-mytouch-4g.5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/img/phones/t-mobile-mytouch-4g.5.jpg -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/index.html -------------------------------------------------------------------------------- /app/js/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/js/app.component.ts -------------------------------------------------------------------------------- /app/js/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/js/app.config.ts -------------------------------------------------------------------------------- /app/js/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/js/app.module.ts -------------------------------------------------------------------------------- /app/js/core/checkmark.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/js/core/checkmark.pipe.spec.ts -------------------------------------------------------------------------------- /app/js/core/checkmark.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/js/core/checkmark.pipe.ts -------------------------------------------------------------------------------- /app/js/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/js/core/core.module.ts -------------------------------------------------------------------------------- /app/js/core/phone.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/js/core/phone.service.spec.ts -------------------------------------------------------------------------------- /app/js/core/phone.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/js/core/phone.service.ts -------------------------------------------------------------------------------- /app/js/phone_detail/phone-detail.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/js/phone_detail/phone-detail.component.spec.ts -------------------------------------------------------------------------------- /app/js/phone_detail/phone-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/js/phone_detail/phone-detail.component.ts -------------------------------------------------------------------------------- /app/js/phone_detail/phone-detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/js/phone_detail/phone-detail.html -------------------------------------------------------------------------------- /app/js/phone_detail/phone-detail.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/js/phone_detail/phone-detail.module.ts -------------------------------------------------------------------------------- /app/js/phone_detail/phone.animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/js/phone_detail/phone.animation.ts -------------------------------------------------------------------------------- /app/js/phone_list/phone-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/js/phone_list/phone-list.component.spec.ts -------------------------------------------------------------------------------- /app/js/phone_list/phone-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/js/phone_list/phone-list.component.ts -------------------------------------------------------------------------------- /app/js/phone_list/phone-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/js/phone_list/phone-list.html -------------------------------------------------------------------------------- /app/js/phone_list/phone-list.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/js/phone_list/phone-list.module.ts -------------------------------------------------------------------------------- /app/phones/dell-streak-7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/phones/dell-streak-7.json -------------------------------------------------------------------------------- /app/phones/dell-venue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/phones/dell-venue.json -------------------------------------------------------------------------------- /app/phones/droid-2-global-by-motorola.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/phones/droid-2-global-by-motorola.json -------------------------------------------------------------------------------- /app/phones/droid-pro-by-motorola.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/phones/droid-pro-by-motorola.json -------------------------------------------------------------------------------- /app/phones/lg-axis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/phones/lg-axis.json -------------------------------------------------------------------------------- /app/phones/motorola-atrix-4g.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/phones/motorola-atrix-4g.json -------------------------------------------------------------------------------- /app/phones/motorola-bravo-with-motoblur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/phones/motorola-bravo-with-motoblur.json -------------------------------------------------------------------------------- /app/phones/motorola-charm-with-motoblur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/phones/motorola-charm-with-motoblur.json -------------------------------------------------------------------------------- /app/phones/motorola-defy-with-motoblur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/phones/motorola-defy-with-motoblur.json -------------------------------------------------------------------------------- /app/phones/motorola-xoom-with-wi-fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/phones/motorola-xoom-with-wi-fi.json -------------------------------------------------------------------------------- /app/phones/motorola-xoom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/phones/motorola-xoom.json -------------------------------------------------------------------------------- /app/phones/nexus-s.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/phones/nexus-s.json -------------------------------------------------------------------------------- /app/phones/phones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/phones/phones.json -------------------------------------------------------------------------------- /app/phones/samsung-galaxy-tab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/phones/samsung-galaxy-tab.json -------------------------------------------------------------------------------- /app/phones/samsung-gem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/phones/samsung-gem.json -------------------------------------------------------------------------------- /app/phones/samsung-mesmerize-a-galaxy-s-phone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/phones/samsung-mesmerize-a-galaxy-s-phone.json -------------------------------------------------------------------------------- /app/phones/samsung-showcase-a-galaxy-s-phone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/phones/samsung-showcase-a-galaxy-s-phone.json -------------------------------------------------------------------------------- /app/phones/samsung-transform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/phones/samsung-transform.json -------------------------------------------------------------------------------- /app/phones/sanyo-zio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/phones/sanyo-zio.json -------------------------------------------------------------------------------- /app/phones/t-mobile-g2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/phones/t-mobile-g2.json -------------------------------------------------------------------------------- /app/phones/t-mobile-mytouch-4g.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/app/phones/t-mobile-mytouch-4g.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/package.json -------------------------------------------------------------------------------- /spec.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/spec.bundle.js -------------------------------------------------------------------------------- /test/e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/test/e2e/README.md -------------------------------------------------------------------------------- /test/e2e/scenarios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/test/e2e/scenarios.js -------------------------------------------------------------------------------- /test/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/test/karma.conf.js -------------------------------------------------------------------------------- /test/protractor-conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/test/protractor-conf.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/typings.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngParty/ng1-migration-workshop/HEAD/webpack.config.js --------------------------------------------------------------------------------