├── .bowerrc ├── .gitignore ├── LICENSE ├── README.md ├── app ├── animations.css ├── app.css ├── app.js ├── components │ └── contacts-service.js ├── img │ ├── anne.png │ ├── bob.png │ ├── emma.png │ ├── frank.png │ ├── olivia.png │ ├── scott.png │ └── susan.png ├── index.html ├── view1 │ ├── view1.html │ └── view1.js ├── view2 │ ├── view2.html │ └── view2.js ├── view3 │ ├── view3.html │ └── view3.js └── view4 │ ├── view4.html │ └── view4.js ├── bower.json ├── package.json └── sample └── angular-hero-sample.gif /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-lee-eng/Angular-Hero-Sample/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-lee-eng/Angular-Hero-Sample/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-lee-eng/Angular-Hero-Sample/HEAD/README.md -------------------------------------------------------------------------------- /app/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-lee-eng/Angular-Hero-Sample/HEAD/app/animations.css -------------------------------------------------------------------------------- /app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-lee-eng/Angular-Hero-Sample/HEAD/app/app.css -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-lee-eng/Angular-Hero-Sample/HEAD/app/app.js -------------------------------------------------------------------------------- /app/components/contacts-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-lee-eng/Angular-Hero-Sample/HEAD/app/components/contacts-service.js -------------------------------------------------------------------------------- /app/img/anne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-lee-eng/Angular-Hero-Sample/HEAD/app/img/anne.png -------------------------------------------------------------------------------- /app/img/bob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-lee-eng/Angular-Hero-Sample/HEAD/app/img/bob.png -------------------------------------------------------------------------------- /app/img/emma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-lee-eng/Angular-Hero-Sample/HEAD/app/img/emma.png -------------------------------------------------------------------------------- /app/img/frank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-lee-eng/Angular-Hero-Sample/HEAD/app/img/frank.png -------------------------------------------------------------------------------- /app/img/olivia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-lee-eng/Angular-Hero-Sample/HEAD/app/img/olivia.png -------------------------------------------------------------------------------- /app/img/scott.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-lee-eng/Angular-Hero-Sample/HEAD/app/img/scott.png -------------------------------------------------------------------------------- /app/img/susan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-lee-eng/Angular-Hero-Sample/HEAD/app/img/susan.png -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-lee-eng/Angular-Hero-Sample/HEAD/app/index.html -------------------------------------------------------------------------------- /app/view1/view1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-lee-eng/Angular-Hero-Sample/HEAD/app/view1/view1.html -------------------------------------------------------------------------------- /app/view1/view1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-lee-eng/Angular-Hero-Sample/HEAD/app/view1/view1.js -------------------------------------------------------------------------------- /app/view2/view2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-lee-eng/Angular-Hero-Sample/HEAD/app/view2/view2.html -------------------------------------------------------------------------------- /app/view2/view2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-lee-eng/Angular-Hero-Sample/HEAD/app/view2/view2.js -------------------------------------------------------------------------------- /app/view3/view3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-lee-eng/Angular-Hero-Sample/HEAD/app/view3/view3.html -------------------------------------------------------------------------------- /app/view3/view3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-lee-eng/Angular-Hero-Sample/HEAD/app/view3/view3.js -------------------------------------------------------------------------------- /app/view4/view4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-lee-eng/Angular-Hero-Sample/HEAD/app/view4/view4.html -------------------------------------------------------------------------------- /app/view4/view4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-lee-eng/Angular-Hero-Sample/HEAD/app/view4/view4.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-lee-eng/Angular-Hero-Sample/HEAD/bower.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-lee-eng/Angular-Hero-Sample/HEAD/package.json -------------------------------------------------------------------------------- /sample/angular-hero-sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-lee-eng/Angular-Hero-Sample/HEAD/sample/angular-hero-sample.gif --------------------------------------------------------------------------------