├── .gitignore ├── Chapter01 ├── README.txt ├── Step01-HelloWorld │ └── src │ │ ├── css │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ ├── app.js │ │ ├── controllers.js │ │ └── vendor │ │ └── angular.js ├── Step02-Object │ └── src │ │ ├── css │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ ├── app.js │ │ ├── controllers.js │ │ └── vendor │ │ └── angular.js ├── Step03-Directive │ └── src │ │ ├── css │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ ├── app.js │ │ ├── controllers.js │ │ ├── directives.js │ │ └── vendor │ │ └── angular.js ├── Step03a-Attribute-vs-Element │ └── src │ │ ├── css │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ ├── app.js │ │ ├── controllers.js │ │ ├── directives.js │ │ └── vendor │ │ └── angular.js ├── Step04-Bower │ ├── .bowerrc │ ├── .gitignore │ ├── README.md │ ├── bower.json │ └── src │ │ ├── css │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ ├── app.js │ │ ├── controllers.js │ │ └── directives.js ├── Step05-Karma │ ├── .bowerrc │ ├── .gitignore │ ├── README.md │ ├── bower.json │ ├── conf │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test.bat │ │ └── test.sh │ ├── src │ │ ├── css │ │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ └── directives.js │ └── test │ │ └── unit │ │ ├── controllers.spec.js │ │ └── directives.spec.js ├── Step06-Protractor │ ├── .bowerrc │ ├── .gitignore │ ├── README.md │ ├── bower.json │ ├── conf │ │ ├── karma.conf.js │ │ └── protractor.conf.js │ ├── package.json │ ├── scripts │ │ ├── test.bat │ │ └── test.sh │ ├── src │ │ ├── css │ │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ └── directives.js │ └── test │ │ ├── protractor │ │ └── spec.js │ │ └── unit │ │ ├── controllers.spec.js │ │ └── directives.spec.js ├── Step07-Grunt │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ │ ├── karma.conf.js │ │ └── protractor.conf.js │ ├── package.json │ ├── scripts │ │ ├── test.bat │ │ └── test.sh │ ├── src │ │ ├── css │ │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ └── directives.js │ └── test │ │ ├── protractor │ │ └── spec.js │ │ └── unit │ │ ├── controllers.spec.js │ │ └── directives.spec.js └── Step08-Grunt-Protractor │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ ├── karma.conf.js │ └── protractor.conf.js │ ├── package.json │ ├── scripts │ ├── test.bat │ └── test.sh │ ├── src │ ├── css │ │ └── main.css │ ├── index.html │ └── js │ │ ├── app.js │ │ ├── controllers.js │ │ └── directives.js │ └── test │ ├── protractor │ └── spec.js │ └── unit │ ├── controllers.spec.js │ └── directives.spec.js ├── Chapter02 ├── Step01 │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test-e2e.sh │ │ ├── test.sh │ │ └── web-server.js │ ├── src │ │ ├── css │ │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ ├── directives.js │ │ │ └── vendor │ │ │ └── ui-utils.js │ └── test │ │ └── unit │ │ ├── controllers.spec.js │ │ └── directives.spec.js ├── Step02-Mask │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test-e2e.sh │ │ ├── test.sh │ │ └── web-server.js │ └── src │ │ ├── css │ │ ├── main.css │ │ └── vendor │ │ │ └── bootstrap.css │ │ ├── index.html │ │ └── js │ │ ├── app.js │ │ ├── controllers.js │ │ └── vendor │ │ └── ui-utils.js ├── Step03-Event │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test-e2e.sh │ │ ├── test.sh │ │ └── web-server.js │ └── src │ │ ├── css │ │ ├── main.css │ │ └── vendor │ │ │ └── bootstrap.css │ │ ├── index.html │ │ └── js │ │ ├── app.js │ │ ├── controllers.js │ │ └── vendor │ │ └── ui-utils.js ├── Step04-KeyPress │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ │ ├── karma-e2e.conf.js │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test-e2e.sh │ │ ├── test.sh │ │ └── web-server.js │ └── src │ │ ├── css │ │ ├── main.css │ │ └── vendor │ │ │ └── bootstrap.css │ │ ├── index.html │ │ └── js │ │ ├── app.js │ │ ├── controllers.js │ │ └── vendor │ │ ├── angular.js │ │ └── ui-utils.js └── Step05-jQuery │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ ├── karma-e2e.conf.js │ └── karma.conf.js │ ├── package.json │ ├── scripts │ ├── test-e2e.sh │ ├── test.sh │ └── web-server.js │ └── src │ ├── css │ ├── main.css │ └── vendor │ │ └── bootstrap.css │ ├── index.html │ └── js │ ├── app.js │ ├── controllers.js │ └── vendor │ ├── bootstrap.js │ └── ui-utils.js ├── Chapter03 ├── Step01 │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── conf │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test-e2e.sh │ │ ├── test.sh │ │ └── web-server.js │ ├── src │ │ ├── css │ │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ ├── directives.js │ │ │ └── vendor │ │ │ ├── angular.js │ │ │ ├── bootstrap.js │ │ │ ├── jquery-1.10.2.js │ │ │ └── ui-utils.js │ └── test │ │ └── unit │ │ ├── controllers.spec.js │ │ └── directives.spec.js ├── Step02-Maps │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test-e2e.sh │ │ ├── test.sh │ │ └── web-server.js │ └── src │ │ ├── css │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ ├── app.js │ │ ├── controllers.js │ │ └── vendor │ │ └── jquery-1.10.2.js ├── Step03-calendar │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test-e2e.sh │ │ ├── test.sh │ │ └── web-server.js │ ├── src │ │ ├── css │ │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ ├── filters.js │ │ │ └── vendor │ │ │ └── jquery-1.10.2.js │ └── test │ │ └── unit │ │ ├── controllers.spec.js │ │ └── filters.spec.js └── Step04-ui-router │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ ├── karma-e2e.conf.js │ └── karma.conf.js │ ├── package.json │ ├── scripts │ ├── test-e2e.sh │ ├── test.sh │ └── web-server.js │ ├── src │ ├── css │ │ └── main.css │ ├── index.html │ └── js │ │ ├── app.js │ │ ├── controllers.js │ │ └── vendor │ │ └── jquery-1.10.2.js │ └── test │ ├── e2e │ └── scenarios.spec.js │ ├── lib │ ├── angular-mocks.js │ └── angular-scenario.js │ └── unit │ └── controllers.spec.js ├── Chapter04 ├── Step01 │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ │ ├── karma-e2e.conf.js │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test-e2e.sh │ │ ├── test.sh │ │ └── web-server.js │ ├── src │ │ ├── css │ │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ └── filters.js │ └── test │ │ ├── e2e │ │ └── scenarios.spec.js │ │ ├── lib │ │ └── angular-scenario.js │ │ └── unit │ │ ├── controllers.spec.js │ │ └── filters.spec.js ├── Step02-Simple-Grid │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ │ ├── karma-e2e.conf.js │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test-e2e.sh │ │ ├── test.sh │ │ └── web-server.js │ ├── src │ │ ├── css │ │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ ├── filters.js │ │ │ └── services.js │ └── test │ │ ├── e2e │ │ └── scenarios.spec.js │ │ ├── lib │ │ └── angular-scenario.js │ │ └── unit │ │ ├── controllers.spec.js │ │ └── filters.spec.js ├── Step03-Grouped-Grid │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ │ ├── karma-e2e.conf.js │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test-e2e.sh │ │ ├── test.sh │ │ └── web-server.js │ ├── src │ │ ├── css │ │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ ├── filters.js │ │ │ └── services.js │ └── test │ │ ├── e2e │ │ └── scenarios.spec.js │ │ ├── lib │ │ └── angular-scenario.js │ │ └── unit │ │ ├── controllers.spec.js │ │ └── filters.spec.js └── Step04-Master-Detail │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ ├── karma-e2e.conf.js │ └── karma.conf.js │ ├── package.json │ ├── scripts │ ├── test-e2e.sh │ ├── test.sh │ └── web-server.js │ ├── src │ ├── css │ │ └── main.css │ ├── index.html │ └── js │ │ ├── app.js │ │ ├── controllers.js │ │ ├── filters.js │ │ └── services.js │ └── test │ ├── e2e │ └── scenarios.spec.js │ ├── lib │ └── angular-scenario.js │ └── unit │ ├── controllers.spec.js │ └── filters.spec.js ├── Chapter05 ├── Step01 │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ │ ├── karma-e2e.conf.js │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test-e2e.sh │ │ ├── test.sh │ │ └── web-server.js │ ├── src │ │ ├── css │ │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ └── filters.js │ └── test │ │ ├── e2e │ │ └── scenarios.spec.js │ │ └── unit │ │ ├── controllers.spec.js │ │ └── filters.spec.js ├── Step02-Fade │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ │ ├── karma-e2e.conf.js │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test-e2e.sh │ │ ├── test.sh │ │ └── web-server.js │ ├── src │ │ ├── css │ │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ └── filters.js │ └── test │ │ ├── e2e │ │ └── scenarios.spec.js │ │ └── unit │ │ ├── controllers.spec.js │ │ └── filters.spec.js ├── Step03-Motion │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ │ ├── karma-e2e.conf.js │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test-e2e.sh │ │ ├── test.sh │ │ └── web-server.js │ ├── src │ │ ├── css │ │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ └── filters.js │ └── test │ │ ├── e2e │ │ └── scenarios.spec.js │ │ └── unit │ │ ├── controllers.spec.js │ │ └── filters.spec.js ├── Step04-Bezier │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ │ ├── karma-e2e.conf.js │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test-e2e.sh │ │ ├── test.sh │ │ └── web-server.js │ ├── src │ │ ├── css │ │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ └── filters.js │ └── test │ │ ├── e2e │ │ └── scenarios.spec.js │ │ └── unit │ │ ├── controllers.spec.js │ │ └── filters.spec.js ├── Step05-LESS │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ │ ├── karma-e2e.conf.js │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test-e2e.sh │ │ ├── test.sh │ │ └── web-server.js │ ├── src │ │ ├── css │ │ │ └── main.less │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ └── filters.js │ └── test │ │ ├── e2e │ │ └── scenarios.spec.js │ │ └── unit │ │ ├── controllers.spec.js │ │ └── filters.spec.js ├── Step06-animate.css │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ │ ├── karma-e2e.conf.js │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test-e2e.sh │ │ ├── test.sh │ │ └── web-server.js │ ├── src │ │ ├── css │ │ │ └── main.less │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ └── filters.js │ └── test │ │ ├── e2e │ │ └── scenarios.spec.js │ │ └── unit │ │ ├── controllers.spec.js │ │ └── filters.spec.js ├── Step07-Stagger │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ │ ├── karma-e2e.conf.js │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test-e2e.sh │ │ ├── test.sh │ │ └── web-server.js │ ├── src │ │ ├── css │ │ │ └── main.less │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ └── filters.js │ └── test │ │ ├── e2e │ │ └── scenarios.spec.js │ │ └── unit │ │ ├── controllers.spec.js │ │ └── filters.spec.js └── Step08-JS │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ ├── karma-e2e.conf.js │ └── karma.conf.js │ ├── package.json │ ├── scripts │ ├── test-e2e.sh │ ├── test.sh │ └── web-server.js │ ├── src │ ├── css │ │ └── main.less │ ├── index.html │ └── js │ │ ├── app.js │ │ ├── controllers.js │ │ └── filters.js │ └── test │ ├── e2e │ └── scenarios.spec.js │ └── unit │ ├── controllers.spec.js │ └── filters.spec.js ├── Chapter06 ├── Step01 │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ │ ├── karma-e2e.conf.js │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test-e2e.sh │ │ ├── test.sh │ │ └── web-server.js │ └── src │ │ ├── css │ │ └── main.css │ │ └── index.html ├── Step02-data-driven │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ │ ├── karma-e2e.conf.js │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test-e2e.sh │ │ ├── test.sh │ │ └── web-server.js │ └── src │ │ ├── css │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ ├── app.js │ │ └── controllers.js ├── Step03-widget │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ │ ├── karma-e2e.conf.js │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test-e2e.sh │ │ ├── test.sh │ │ └── web-server.js │ └── src │ │ ├── css │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ ├── app.js │ │ └── directives.js ├── Step04-google-chart │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ │ ├── karma-e2e.conf.js │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test-e2e.sh │ │ ├── test.sh │ │ └── web-server.js │ └── src │ │ ├── index.html │ │ └── js │ │ ├── app.js │ │ └── controllers.js └── Step05-dynamic │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ ├── karma-e2e.conf.js │ └── karma.conf.js │ ├── package.json │ ├── scripts │ ├── test-e2e.sh │ ├── test.sh │ └── web-server.js │ └── src │ ├── css │ └── main.css │ ├── index.html │ └── js │ ├── app.js │ └── controllers.js ├── Chapter07 ├── Step01 │ ├── at-media-css.html │ ├── at-media-features.html │ └── at-media-orientation.html ├── Step02-twitter-bootstrap │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ │ ├── karma-e2e.conf.js │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test-e2e.sh │ │ ├── test.sh │ │ └── web-server.js │ ├── src │ │ ├── css │ │ │ └── main.less │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ └── filters.js │ └── test │ │ ├── e2e │ │ └── scenarios.spec.js │ │ └── unit │ │ ├── controllers.spec.js │ │ └── filters.spec.js └── Step03-foundation │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ ├── karma-e2e.conf.js │ └── karma.conf.js │ ├── package.json │ ├── scripts │ ├── test-e2e.sh │ ├── test.sh │ └── web-server.js │ ├── src │ ├── img │ │ ├── 80x80.gif │ │ ├── angular20.jpg │ │ └── durandal.jpg │ ├── index.html │ └── js │ │ └── app.js │ └── test │ ├── e2e │ └── scenarios.spec.js │ └── unit │ ├── controllers.spec.js │ └── filters.spec.js ├── Chapter08 ├── Step01 │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ │ ├── karma-e2e.conf.js │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test-e2e.sh │ │ ├── test.sh │ │ └── web-server.js │ ├── src │ │ ├── css │ │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ │ └── app.js │ └── test │ │ └── e2e │ │ └── scenarios.spec.js ├── Step02-accordion │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ │ ├── karma-e2e.conf.js │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test-e2e.sh │ │ ├── test.sh │ │ └── web-server.js │ ├── src │ │ ├── css │ │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ │ └── app.js │ └── test │ │ └── e2e │ │ └── scenarios.spec.js ├── Step03-tab │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ │ ├── karma-e2e.conf.js │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test-e2e.sh │ │ ├── test.sh │ │ └── web-server.js │ ├── src │ │ ├── css │ │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ │ └── app.js │ └── test │ │ └── e2e │ │ └── scenarios.spec.js └── Step04-issue │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ ├── karma-e2e.conf.js │ └── karma.conf.js │ ├── package.json │ ├── scripts │ ├── test-e2e.sh │ ├── test.sh │ └── web-server.js │ ├── src │ ├── css │ │ └── main.css │ ├── images │ │ ├── 1.png │ │ ├── 2.png │ │ └── 3.png │ ├── index.html │ ├── js │ │ ├── app.js │ │ └── controllers.js │ └── views │ │ └── view-issue.tpl.html │ └── test │ └── e2e │ └── scenarios.spec.js ├── Chapter09 ├── Step01-pagination │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ │ ├── karma-e2e.conf.js │ │ └── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── test-e2e.sh │ │ ├── test.sh │ │ └── web-server.js │ ├── src │ │ ├── css │ │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ └── controllers.js │ └── test │ │ └── e2e │ │ └── scenarios.spec.js └── Step02-tabs │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── conf │ ├── karma-e2e.conf.js │ └── karma.conf.js │ ├── package.json │ ├── scripts │ ├── test-e2e.sh │ ├── test.sh │ └── web-server.js │ ├── src │ ├── css │ │ └── main.css │ ├── index.html │ └── js │ │ ├── app.js │ │ └── controllers.js │ └── test │ └── e2e │ └── scenarios.spec.js ├── Chapter10 └── Step01-mobile │ ├── .bowerrc │ ├── .gitignore │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── package.json │ └── src │ ├── css │ └── style.css │ ├── index.html │ ├── js │ ├── app.js │ ├── controllers.js │ └── services.js │ └── views │ └── bookmarks.html ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | *.iml 4 | .idea 5 | bower/ -------------------------------------------------------------------------------- /Chapter01/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/README.txt -------------------------------------------------------------------------------- /Chapter01/Step01-HelloWorld/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step01-HelloWorld/src/css/main.css -------------------------------------------------------------------------------- /Chapter01/Step01-HelloWorld/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step01-HelloWorld/src/index.html -------------------------------------------------------------------------------- /Chapter01/Step01-HelloWorld/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step01-HelloWorld/src/js/app.js -------------------------------------------------------------------------------- /Chapter01/Step01-HelloWorld/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step01-HelloWorld/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter01/Step01-HelloWorld/src/js/vendor/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step01-HelloWorld/src/js/vendor/angular.js -------------------------------------------------------------------------------- /Chapter01/Step02-Object/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step02-Object/src/css/main.css -------------------------------------------------------------------------------- /Chapter01/Step02-Object/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step02-Object/src/index.html -------------------------------------------------------------------------------- /Chapter01/Step02-Object/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step02-Object/src/js/app.js -------------------------------------------------------------------------------- /Chapter01/Step02-Object/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step02-Object/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter01/Step02-Object/src/js/vendor/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step02-Object/src/js/vendor/angular.js -------------------------------------------------------------------------------- /Chapter01/Step03-Directive/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step03-Directive/src/css/main.css -------------------------------------------------------------------------------- /Chapter01/Step03-Directive/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step03-Directive/src/index.html -------------------------------------------------------------------------------- /Chapter01/Step03-Directive/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step03-Directive/src/js/app.js -------------------------------------------------------------------------------- /Chapter01/Step03-Directive/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step03-Directive/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter01/Step03-Directive/src/js/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step03-Directive/src/js/directives.js -------------------------------------------------------------------------------- /Chapter01/Step03-Directive/src/js/vendor/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step03-Directive/src/js/vendor/angular.js -------------------------------------------------------------------------------- /Chapter01/Step03a-Attribute-vs-Element/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step03a-Attribute-vs-Element/src/css/main.css -------------------------------------------------------------------------------- /Chapter01/Step03a-Attribute-vs-Element/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step03a-Attribute-vs-Element/src/index.html -------------------------------------------------------------------------------- /Chapter01/Step03a-Attribute-vs-Element/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step03a-Attribute-vs-Element/src/js/app.js -------------------------------------------------------------------------------- /Chapter01/Step03a-Attribute-vs-Element/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step03a-Attribute-vs-Element/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter01/Step03a-Attribute-vs-Element/src/js/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step03a-Attribute-vs-Element/src/js/directives.js -------------------------------------------------------------------------------- /Chapter01/Step03a-Attribute-vs-Element/src/js/vendor/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step03a-Attribute-vs-Element/src/js/vendor/angular.js -------------------------------------------------------------------------------- /Chapter01/Step04-Bower/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "src/bower" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter01/Step04-Bower/.gitignore: -------------------------------------------------------------------------------- 1 | src/bower/ -------------------------------------------------------------------------------- /Chapter01/Step04-Bower/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step04-Bower/README.md -------------------------------------------------------------------------------- /Chapter01/Step04-Bower/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step04-Bower/bower.json -------------------------------------------------------------------------------- /Chapter01/Step04-Bower/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step04-Bower/src/css/main.css -------------------------------------------------------------------------------- /Chapter01/Step04-Bower/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step04-Bower/src/index.html -------------------------------------------------------------------------------- /Chapter01/Step04-Bower/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step04-Bower/src/js/app.js -------------------------------------------------------------------------------- /Chapter01/Step04-Bower/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step04-Bower/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter01/Step04-Bower/src/js/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step04-Bower/src/js/directives.js -------------------------------------------------------------------------------- /Chapter01/Step05-Karma/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "src/bower" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter01/Step05-Karma/.gitignore: -------------------------------------------------------------------------------- 1 | src/bower/ -------------------------------------------------------------------------------- /Chapter01/Step05-Karma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step05-Karma/README.md -------------------------------------------------------------------------------- /Chapter01/Step05-Karma/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step05-Karma/bower.json -------------------------------------------------------------------------------- /Chapter01/Step05-Karma/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step05-Karma/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter01/Step05-Karma/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step05-Karma/package.json -------------------------------------------------------------------------------- /Chapter01/Step05-Karma/scripts/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step05-Karma/scripts/test.bat -------------------------------------------------------------------------------- /Chapter01/Step05-Karma/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step05-Karma/scripts/test.sh -------------------------------------------------------------------------------- /Chapter01/Step05-Karma/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step05-Karma/src/css/main.css -------------------------------------------------------------------------------- /Chapter01/Step05-Karma/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step05-Karma/src/index.html -------------------------------------------------------------------------------- /Chapter01/Step05-Karma/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step05-Karma/src/js/app.js -------------------------------------------------------------------------------- /Chapter01/Step05-Karma/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step05-Karma/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter01/Step05-Karma/src/js/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step05-Karma/src/js/directives.js -------------------------------------------------------------------------------- /Chapter01/Step05-Karma/test/unit/controllers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step05-Karma/test/unit/controllers.spec.js -------------------------------------------------------------------------------- /Chapter01/Step05-Karma/test/unit/directives.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step05-Karma/test/unit/directives.spec.js -------------------------------------------------------------------------------- /Chapter01/Step06-Protractor/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "src/bower" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter01/Step06-Protractor/.gitignore: -------------------------------------------------------------------------------- 1 | src/bower/ -------------------------------------------------------------------------------- /Chapter01/Step06-Protractor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step06-Protractor/README.md -------------------------------------------------------------------------------- /Chapter01/Step06-Protractor/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step06-Protractor/bower.json -------------------------------------------------------------------------------- /Chapter01/Step06-Protractor/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step06-Protractor/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter01/Step06-Protractor/conf/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step06-Protractor/conf/protractor.conf.js -------------------------------------------------------------------------------- /Chapter01/Step06-Protractor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step06-Protractor/package.json -------------------------------------------------------------------------------- /Chapter01/Step06-Protractor/scripts/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step06-Protractor/scripts/test.bat -------------------------------------------------------------------------------- /Chapter01/Step06-Protractor/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step06-Protractor/scripts/test.sh -------------------------------------------------------------------------------- /Chapter01/Step06-Protractor/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step06-Protractor/src/css/main.css -------------------------------------------------------------------------------- /Chapter01/Step06-Protractor/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step06-Protractor/src/index.html -------------------------------------------------------------------------------- /Chapter01/Step06-Protractor/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step06-Protractor/src/js/app.js -------------------------------------------------------------------------------- /Chapter01/Step06-Protractor/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step06-Protractor/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter01/Step06-Protractor/src/js/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step06-Protractor/src/js/directives.js -------------------------------------------------------------------------------- /Chapter01/Step06-Protractor/test/protractor/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step06-Protractor/test/protractor/spec.js -------------------------------------------------------------------------------- /Chapter01/Step06-Protractor/test/unit/controllers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step06-Protractor/test/unit/controllers.spec.js -------------------------------------------------------------------------------- /Chapter01/Step06-Protractor/test/unit/directives.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step06-Protractor/test/unit/directives.spec.js -------------------------------------------------------------------------------- /Chapter01/Step07-Grunt/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "src/bower" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter01/Step07-Grunt/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower/ -------------------------------------------------------------------------------- /Chapter01/Step07-Grunt/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step07-Grunt/Gruntfile.js -------------------------------------------------------------------------------- /Chapter01/Step07-Grunt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step07-Grunt/README.md -------------------------------------------------------------------------------- /Chapter01/Step07-Grunt/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step07-Grunt/bower.json -------------------------------------------------------------------------------- /Chapter01/Step07-Grunt/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step07-Grunt/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter01/Step07-Grunt/conf/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step07-Grunt/conf/protractor.conf.js -------------------------------------------------------------------------------- /Chapter01/Step07-Grunt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step07-Grunt/package.json -------------------------------------------------------------------------------- /Chapter01/Step07-Grunt/scripts/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step07-Grunt/scripts/test.bat -------------------------------------------------------------------------------- /Chapter01/Step07-Grunt/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step07-Grunt/scripts/test.sh -------------------------------------------------------------------------------- /Chapter01/Step07-Grunt/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step07-Grunt/src/css/main.css -------------------------------------------------------------------------------- /Chapter01/Step07-Grunt/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step07-Grunt/src/index.html -------------------------------------------------------------------------------- /Chapter01/Step07-Grunt/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step07-Grunt/src/js/app.js -------------------------------------------------------------------------------- /Chapter01/Step07-Grunt/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step07-Grunt/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter01/Step07-Grunt/src/js/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step07-Grunt/src/js/directives.js -------------------------------------------------------------------------------- /Chapter01/Step07-Grunt/test/protractor/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step07-Grunt/test/protractor/spec.js -------------------------------------------------------------------------------- /Chapter01/Step07-Grunt/test/unit/controllers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step07-Grunt/test/unit/controllers.spec.js -------------------------------------------------------------------------------- /Chapter01/Step07-Grunt/test/unit/directives.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step07-Grunt/test/unit/directives.spec.js -------------------------------------------------------------------------------- /Chapter01/Step08-Grunt-Protractor/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "src/bower" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter01/Step08-Grunt-Protractor/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower/ -------------------------------------------------------------------------------- /Chapter01/Step08-Grunt-Protractor/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step08-Grunt-Protractor/Gruntfile.js -------------------------------------------------------------------------------- /Chapter01/Step08-Grunt-Protractor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step08-Grunt-Protractor/README.md -------------------------------------------------------------------------------- /Chapter01/Step08-Grunt-Protractor/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step08-Grunt-Protractor/bower.json -------------------------------------------------------------------------------- /Chapter01/Step08-Grunt-Protractor/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step08-Grunt-Protractor/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter01/Step08-Grunt-Protractor/conf/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step08-Grunt-Protractor/conf/protractor.conf.js -------------------------------------------------------------------------------- /Chapter01/Step08-Grunt-Protractor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step08-Grunt-Protractor/package.json -------------------------------------------------------------------------------- /Chapter01/Step08-Grunt-Protractor/scripts/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step08-Grunt-Protractor/scripts/test.bat -------------------------------------------------------------------------------- /Chapter01/Step08-Grunt-Protractor/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step08-Grunt-Protractor/scripts/test.sh -------------------------------------------------------------------------------- /Chapter01/Step08-Grunt-Protractor/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step08-Grunt-Protractor/src/css/main.css -------------------------------------------------------------------------------- /Chapter01/Step08-Grunt-Protractor/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step08-Grunt-Protractor/src/index.html -------------------------------------------------------------------------------- /Chapter01/Step08-Grunt-Protractor/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step08-Grunt-Protractor/src/js/app.js -------------------------------------------------------------------------------- /Chapter01/Step08-Grunt-Protractor/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step08-Grunt-Protractor/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter01/Step08-Grunt-Protractor/src/js/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step08-Grunt-Protractor/src/js/directives.js -------------------------------------------------------------------------------- /Chapter01/Step08-Grunt-Protractor/test/protractor/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step08-Grunt-Protractor/test/protractor/spec.js -------------------------------------------------------------------------------- /Chapter01/Step08-Grunt-Protractor/test/unit/controllers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step08-Grunt-Protractor/test/unit/controllers.spec.js -------------------------------------------------------------------------------- /Chapter01/Step08-Grunt-Protractor/test/unit/directives.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter01/Step08-Grunt-Protractor/test/unit/directives.spec.js -------------------------------------------------------------------------------- /Chapter02/Step01/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "src/bower" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter02/Step01/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /Chapter02/Step01/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step01/Gruntfile.js -------------------------------------------------------------------------------- /Chapter02/Step01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step01/README.md -------------------------------------------------------------------------------- /Chapter02/Step01/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step01/bower.json -------------------------------------------------------------------------------- /Chapter02/Step01/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step01/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter02/Step01/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step01/package.json -------------------------------------------------------------------------------- /Chapter02/Step01/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step01/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter02/Step01/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step01/scripts/test.sh -------------------------------------------------------------------------------- /Chapter02/Step01/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step01/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter02/Step01/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step01/src/css/main.css -------------------------------------------------------------------------------- /Chapter02/Step01/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step01/src/index.html -------------------------------------------------------------------------------- /Chapter02/Step01/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step01/src/js/app.js -------------------------------------------------------------------------------- /Chapter02/Step01/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step01/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter02/Step01/src/js/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step01/src/js/directives.js -------------------------------------------------------------------------------- /Chapter02/Step01/src/js/vendor/ui-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step01/src/js/vendor/ui-utils.js -------------------------------------------------------------------------------- /Chapter02/Step01/test/unit/controllers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step01/test/unit/controllers.spec.js -------------------------------------------------------------------------------- /Chapter02/Step01/test/unit/directives.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step01/test/unit/directives.spec.js -------------------------------------------------------------------------------- /Chapter02/Step02-Mask/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "src/bower" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter02/Step02-Mask/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /Chapter02/Step02-Mask/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step02-Mask/Gruntfile.js -------------------------------------------------------------------------------- /Chapter02/Step02-Mask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step02-Mask/README.md -------------------------------------------------------------------------------- /Chapter02/Step02-Mask/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step02-Mask/bower.json -------------------------------------------------------------------------------- /Chapter02/Step02-Mask/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step02-Mask/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter02/Step02-Mask/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step02-Mask/package.json -------------------------------------------------------------------------------- /Chapter02/Step02-Mask/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step02-Mask/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter02/Step02-Mask/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step02-Mask/scripts/test.sh -------------------------------------------------------------------------------- /Chapter02/Step02-Mask/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step02-Mask/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter02/Step02-Mask/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step02-Mask/src/css/main.css -------------------------------------------------------------------------------- /Chapter02/Step02-Mask/src/css/vendor/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step02-Mask/src/css/vendor/bootstrap.css -------------------------------------------------------------------------------- /Chapter02/Step02-Mask/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step02-Mask/src/index.html -------------------------------------------------------------------------------- /Chapter02/Step02-Mask/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step02-Mask/src/js/app.js -------------------------------------------------------------------------------- /Chapter02/Step02-Mask/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step02-Mask/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter02/Step02-Mask/src/js/vendor/ui-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step02-Mask/src/js/vendor/ui-utils.js -------------------------------------------------------------------------------- /Chapter02/Step03-Event/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "src/bower" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter02/Step03-Event/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /Chapter02/Step03-Event/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step03-Event/Gruntfile.js -------------------------------------------------------------------------------- /Chapter02/Step03-Event/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step03-Event/README.md -------------------------------------------------------------------------------- /Chapter02/Step03-Event/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step03-Event/bower.json -------------------------------------------------------------------------------- /Chapter02/Step03-Event/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step03-Event/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter02/Step03-Event/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step03-Event/package.json -------------------------------------------------------------------------------- /Chapter02/Step03-Event/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step03-Event/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter02/Step03-Event/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step03-Event/scripts/test.sh -------------------------------------------------------------------------------- /Chapter02/Step03-Event/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step03-Event/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter02/Step03-Event/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step03-Event/src/css/main.css -------------------------------------------------------------------------------- /Chapter02/Step03-Event/src/css/vendor/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step03-Event/src/css/vendor/bootstrap.css -------------------------------------------------------------------------------- /Chapter02/Step03-Event/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step03-Event/src/index.html -------------------------------------------------------------------------------- /Chapter02/Step03-Event/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step03-Event/src/js/app.js -------------------------------------------------------------------------------- /Chapter02/Step03-Event/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step03-Event/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter02/Step03-Event/src/js/vendor/ui-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step03-Event/src/js/vendor/ui-utils.js -------------------------------------------------------------------------------- /Chapter02/Step04-KeyPress/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "src/bower" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter02/Step04-KeyPress/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /Chapter02/Step04-KeyPress/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step04-KeyPress/Gruntfile.js -------------------------------------------------------------------------------- /Chapter02/Step04-KeyPress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step04-KeyPress/README.md -------------------------------------------------------------------------------- /Chapter02/Step04-KeyPress/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step04-KeyPress/bower.json -------------------------------------------------------------------------------- /Chapter02/Step04-KeyPress/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step04-KeyPress/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter02/Step04-KeyPress/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step04-KeyPress/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter02/Step04-KeyPress/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step04-KeyPress/package.json -------------------------------------------------------------------------------- /Chapter02/Step04-KeyPress/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step04-KeyPress/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter02/Step04-KeyPress/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step04-KeyPress/scripts/test.sh -------------------------------------------------------------------------------- /Chapter02/Step04-KeyPress/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step04-KeyPress/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter02/Step04-KeyPress/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step04-KeyPress/src/css/main.css -------------------------------------------------------------------------------- /Chapter02/Step04-KeyPress/src/css/vendor/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step04-KeyPress/src/css/vendor/bootstrap.css -------------------------------------------------------------------------------- /Chapter02/Step04-KeyPress/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step04-KeyPress/src/index.html -------------------------------------------------------------------------------- /Chapter02/Step04-KeyPress/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step04-KeyPress/src/js/app.js -------------------------------------------------------------------------------- /Chapter02/Step04-KeyPress/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step04-KeyPress/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter02/Step04-KeyPress/src/js/vendor/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step04-KeyPress/src/js/vendor/angular.js -------------------------------------------------------------------------------- /Chapter02/Step04-KeyPress/src/js/vendor/ui-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step04-KeyPress/src/js/vendor/ui-utils.js -------------------------------------------------------------------------------- /Chapter02/Step05-jQuery/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "src/bower" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter02/Step05-jQuery/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /Chapter02/Step05-jQuery/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step05-jQuery/Gruntfile.js -------------------------------------------------------------------------------- /Chapter02/Step05-jQuery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step05-jQuery/README.md -------------------------------------------------------------------------------- /Chapter02/Step05-jQuery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step05-jQuery/bower.json -------------------------------------------------------------------------------- /Chapter02/Step05-jQuery/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step05-jQuery/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter02/Step05-jQuery/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step05-jQuery/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter02/Step05-jQuery/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step05-jQuery/package.json -------------------------------------------------------------------------------- /Chapter02/Step05-jQuery/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step05-jQuery/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter02/Step05-jQuery/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step05-jQuery/scripts/test.sh -------------------------------------------------------------------------------- /Chapter02/Step05-jQuery/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step05-jQuery/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter02/Step05-jQuery/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step05-jQuery/src/css/main.css -------------------------------------------------------------------------------- /Chapter02/Step05-jQuery/src/css/vendor/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step05-jQuery/src/css/vendor/bootstrap.css -------------------------------------------------------------------------------- /Chapter02/Step05-jQuery/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step05-jQuery/src/index.html -------------------------------------------------------------------------------- /Chapter02/Step05-jQuery/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step05-jQuery/src/js/app.js -------------------------------------------------------------------------------- /Chapter02/Step05-jQuery/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step05-jQuery/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter02/Step05-jQuery/src/js/vendor/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step05-jQuery/src/js/vendor/bootstrap.js -------------------------------------------------------------------------------- /Chapter02/Step05-jQuery/src/js/vendor/ui-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter02/Step05-jQuery/src/js/vendor/ui-utils.js -------------------------------------------------------------------------------- /Chapter03/Step01/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /Chapter03/Step01/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step01/Gruntfile.js -------------------------------------------------------------------------------- /Chapter03/Step01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step01/README.md -------------------------------------------------------------------------------- /Chapter03/Step01/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step01/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter03/Step01/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step01/package.json -------------------------------------------------------------------------------- /Chapter03/Step01/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step01/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter03/Step01/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step01/scripts/test.sh -------------------------------------------------------------------------------- /Chapter03/Step01/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step01/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter03/Step01/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step01/src/css/main.css -------------------------------------------------------------------------------- /Chapter03/Step01/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step01/src/index.html -------------------------------------------------------------------------------- /Chapter03/Step01/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step01/src/js/app.js -------------------------------------------------------------------------------- /Chapter03/Step01/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step01/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter03/Step01/src/js/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step01/src/js/directives.js -------------------------------------------------------------------------------- /Chapter03/Step01/src/js/vendor/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step01/src/js/vendor/angular.js -------------------------------------------------------------------------------- /Chapter03/Step01/src/js/vendor/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step01/src/js/vendor/bootstrap.js -------------------------------------------------------------------------------- /Chapter03/Step01/src/js/vendor/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step01/src/js/vendor/jquery-1.10.2.js -------------------------------------------------------------------------------- /Chapter03/Step01/src/js/vendor/ui-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step01/src/js/vendor/ui-utils.js -------------------------------------------------------------------------------- /Chapter03/Step01/test/unit/controllers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step01/test/unit/controllers.spec.js -------------------------------------------------------------------------------- /Chapter03/Step01/test/unit/directives.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step01/test/unit/directives.spec.js -------------------------------------------------------------------------------- /Chapter03/Step02-Maps/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter03/Step02-Maps/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter03/Step02-Maps/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step02-Maps/Gruntfile.js -------------------------------------------------------------------------------- /Chapter03/Step02-Maps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step02-Maps/README.md -------------------------------------------------------------------------------- /Chapter03/Step02-Maps/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step02-Maps/bower.json -------------------------------------------------------------------------------- /Chapter03/Step02-Maps/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step02-Maps/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter03/Step02-Maps/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step02-Maps/package.json -------------------------------------------------------------------------------- /Chapter03/Step02-Maps/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step02-Maps/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter03/Step02-Maps/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step02-Maps/scripts/test.sh -------------------------------------------------------------------------------- /Chapter03/Step02-Maps/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step02-Maps/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter03/Step02-Maps/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step02-Maps/src/css/main.css -------------------------------------------------------------------------------- /Chapter03/Step02-Maps/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step02-Maps/src/index.html -------------------------------------------------------------------------------- /Chapter03/Step02-Maps/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step02-Maps/src/js/app.js -------------------------------------------------------------------------------- /Chapter03/Step02-Maps/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step02-Maps/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter03/Step02-Maps/src/js/vendor/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step02-Maps/src/js/vendor/jquery-1.10.2.js -------------------------------------------------------------------------------- /Chapter03/Step03-calendar/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter03/Step03-calendar/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter03/Step03-calendar/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step03-calendar/Gruntfile.js -------------------------------------------------------------------------------- /Chapter03/Step03-calendar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step03-calendar/README.md -------------------------------------------------------------------------------- /Chapter03/Step03-calendar/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step03-calendar/bower.json -------------------------------------------------------------------------------- /Chapter03/Step03-calendar/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step03-calendar/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter03/Step03-calendar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step03-calendar/package.json -------------------------------------------------------------------------------- /Chapter03/Step03-calendar/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step03-calendar/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter03/Step03-calendar/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step03-calendar/scripts/test.sh -------------------------------------------------------------------------------- /Chapter03/Step03-calendar/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step03-calendar/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter03/Step03-calendar/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step03-calendar/src/css/main.css -------------------------------------------------------------------------------- /Chapter03/Step03-calendar/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step03-calendar/src/index.html -------------------------------------------------------------------------------- /Chapter03/Step03-calendar/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step03-calendar/src/js/app.js -------------------------------------------------------------------------------- /Chapter03/Step03-calendar/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step03-calendar/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter03/Step03-calendar/src/js/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step03-calendar/src/js/filters.js -------------------------------------------------------------------------------- /Chapter03/Step03-calendar/src/js/vendor/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step03-calendar/src/js/vendor/jquery-1.10.2.js -------------------------------------------------------------------------------- /Chapter03/Step03-calendar/test/unit/controllers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step03-calendar/test/unit/controllers.spec.js -------------------------------------------------------------------------------- /Chapter03/Step03-calendar/test/unit/filters.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step03-calendar/test/unit/filters.spec.js -------------------------------------------------------------------------------- /Chapter03/Step04-ui-router/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter03/Step04-ui-router/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter03/Step04-ui-router/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step04-ui-router/Gruntfile.js -------------------------------------------------------------------------------- /Chapter03/Step04-ui-router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step04-ui-router/README.md -------------------------------------------------------------------------------- /Chapter03/Step04-ui-router/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step04-ui-router/bower.json -------------------------------------------------------------------------------- /Chapter03/Step04-ui-router/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step04-ui-router/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter03/Step04-ui-router/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step04-ui-router/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter03/Step04-ui-router/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step04-ui-router/package.json -------------------------------------------------------------------------------- /Chapter03/Step04-ui-router/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step04-ui-router/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter03/Step04-ui-router/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step04-ui-router/scripts/test.sh -------------------------------------------------------------------------------- /Chapter03/Step04-ui-router/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step04-ui-router/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter03/Step04-ui-router/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step04-ui-router/src/css/main.css -------------------------------------------------------------------------------- /Chapter03/Step04-ui-router/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step04-ui-router/src/index.html -------------------------------------------------------------------------------- /Chapter03/Step04-ui-router/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step04-ui-router/src/js/app.js -------------------------------------------------------------------------------- /Chapter03/Step04-ui-router/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step04-ui-router/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter03/Step04-ui-router/src/js/vendor/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step04-ui-router/src/js/vendor/jquery-1.10.2.js -------------------------------------------------------------------------------- /Chapter03/Step04-ui-router/test/e2e/scenarios.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step04-ui-router/test/e2e/scenarios.spec.js -------------------------------------------------------------------------------- /Chapter03/Step04-ui-router/test/lib/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step04-ui-router/test/lib/angular-mocks.js -------------------------------------------------------------------------------- /Chapter03/Step04-ui-router/test/lib/angular-scenario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step04-ui-router/test/lib/angular-scenario.js -------------------------------------------------------------------------------- /Chapter03/Step04-ui-router/test/unit/controllers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter03/Step04-ui-router/test/unit/controllers.spec.js -------------------------------------------------------------------------------- /Chapter04/Step01/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter04/Step01/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter04/Step01/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step01/Gruntfile.js -------------------------------------------------------------------------------- /Chapter04/Step01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step01/README.md -------------------------------------------------------------------------------- /Chapter04/Step01/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step01/bower.json -------------------------------------------------------------------------------- /Chapter04/Step01/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step01/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter04/Step01/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step01/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter04/Step01/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step01/package.json -------------------------------------------------------------------------------- /Chapter04/Step01/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step01/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter04/Step01/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step01/scripts/test.sh -------------------------------------------------------------------------------- /Chapter04/Step01/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step01/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter04/Step01/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step01/src/css/main.css -------------------------------------------------------------------------------- /Chapter04/Step01/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step01/src/index.html -------------------------------------------------------------------------------- /Chapter04/Step01/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step01/src/js/app.js -------------------------------------------------------------------------------- /Chapter04/Step01/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step01/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter04/Step01/src/js/filters.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("myApp.filters", []); 3 | -------------------------------------------------------------------------------- /Chapter04/Step01/test/e2e/scenarios.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step01/test/e2e/scenarios.spec.js -------------------------------------------------------------------------------- /Chapter04/Step01/test/lib/angular-scenario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step01/test/lib/angular-scenario.js -------------------------------------------------------------------------------- /Chapter04/Step01/test/unit/controllers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step01/test/unit/controllers.spec.js -------------------------------------------------------------------------------- /Chapter04/Step01/test/unit/filters.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step01/test/unit/filters.spec.js -------------------------------------------------------------------------------- /Chapter04/Step02-Simple-Grid/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter04/Step02-Simple-Grid/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter04/Step02-Simple-Grid/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step02-Simple-Grid/Gruntfile.js -------------------------------------------------------------------------------- /Chapter04/Step02-Simple-Grid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step02-Simple-Grid/README.md -------------------------------------------------------------------------------- /Chapter04/Step02-Simple-Grid/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step02-Simple-Grid/bower.json -------------------------------------------------------------------------------- /Chapter04/Step02-Simple-Grid/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step02-Simple-Grid/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter04/Step02-Simple-Grid/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step02-Simple-Grid/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter04/Step02-Simple-Grid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step02-Simple-Grid/package.json -------------------------------------------------------------------------------- /Chapter04/Step02-Simple-Grid/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step02-Simple-Grid/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter04/Step02-Simple-Grid/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step02-Simple-Grid/scripts/test.sh -------------------------------------------------------------------------------- /Chapter04/Step02-Simple-Grid/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step02-Simple-Grid/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter04/Step02-Simple-Grid/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step02-Simple-Grid/src/css/main.css -------------------------------------------------------------------------------- /Chapter04/Step02-Simple-Grid/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step02-Simple-Grid/src/index.html -------------------------------------------------------------------------------- /Chapter04/Step02-Simple-Grid/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step02-Simple-Grid/src/js/app.js -------------------------------------------------------------------------------- /Chapter04/Step02-Simple-Grid/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step02-Simple-Grid/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter04/Step02-Simple-Grid/src/js/filters.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("myApp.filters", []); 3 | -------------------------------------------------------------------------------- /Chapter04/Step02-Simple-Grid/src/js/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step02-Simple-Grid/src/js/services.js -------------------------------------------------------------------------------- /Chapter04/Step02-Simple-Grid/test/e2e/scenarios.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step02-Simple-Grid/test/e2e/scenarios.spec.js -------------------------------------------------------------------------------- /Chapter04/Step02-Simple-Grid/test/lib/angular-scenario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step02-Simple-Grid/test/lib/angular-scenario.js -------------------------------------------------------------------------------- /Chapter04/Step02-Simple-Grid/test/unit/controllers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step02-Simple-Grid/test/unit/controllers.spec.js -------------------------------------------------------------------------------- /Chapter04/Step02-Simple-Grid/test/unit/filters.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step02-Simple-Grid/test/unit/filters.spec.js -------------------------------------------------------------------------------- /Chapter04/Step03-Grouped-Grid/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter04/Step03-Grouped-Grid/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter04/Step03-Grouped-Grid/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step03-Grouped-Grid/Gruntfile.js -------------------------------------------------------------------------------- /Chapter04/Step03-Grouped-Grid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step03-Grouped-Grid/README.md -------------------------------------------------------------------------------- /Chapter04/Step03-Grouped-Grid/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step03-Grouped-Grid/bower.json -------------------------------------------------------------------------------- /Chapter04/Step03-Grouped-Grid/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step03-Grouped-Grid/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter04/Step03-Grouped-Grid/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step03-Grouped-Grid/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter04/Step03-Grouped-Grid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step03-Grouped-Grid/package.json -------------------------------------------------------------------------------- /Chapter04/Step03-Grouped-Grid/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step03-Grouped-Grid/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter04/Step03-Grouped-Grid/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step03-Grouped-Grid/scripts/test.sh -------------------------------------------------------------------------------- /Chapter04/Step03-Grouped-Grid/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step03-Grouped-Grid/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter04/Step03-Grouped-Grid/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step03-Grouped-Grid/src/css/main.css -------------------------------------------------------------------------------- /Chapter04/Step03-Grouped-Grid/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step03-Grouped-Grid/src/index.html -------------------------------------------------------------------------------- /Chapter04/Step03-Grouped-Grid/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step03-Grouped-Grid/src/js/app.js -------------------------------------------------------------------------------- /Chapter04/Step03-Grouped-Grid/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step03-Grouped-Grid/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter04/Step03-Grouped-Grid/src/js/filters.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("myApp.filters", []); 3 | -------------------------------------------------------------------------------- /Chapter04/Step03-Grouped-Grid/src/js/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step03-Grouped-Grid/src/js/services.js -------------------------------------------------------------------------------- /Chapter04/Step03-Grouped-Grid/test/e2e/scenarios.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step03-Grouped-Grid/test/e2e/scenarios.spec.js -------------------------------------------------------------------------------- /Chapter04/Step03-Grouped-Grid/test/lib/angular-scenario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step03-Grouped-Grid/test/lib/angular-scenario.js -------------------------------------------------------------------------------- /Chapter04/Step03-Grouped-Grid/test/unit/controllers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step03-Grouped-Grid/test/unit/controllers.spec.js -------------------------------------------------------------------------------- /Chapter04/Step03-Grouped-Grid/test/unit/filters.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step03-Grouped-Grid/test/unit/filters.spec.js -------------------------------------------------------------------------------- /Chapter04/Step04-Master-Detail/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter04/Step04-Master-Detail/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter04/Step04-Master-Detail/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step04-Master-Detail/Gruntfile.js -------------------------------------------------------------------------------- /Chapter04/Step04-Master-Detail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step04-Master-Detail/README.md -------------------------------------------------------------------------------- /Chapter04/Step04-Master-Detail/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step04-Master-Detail/bower.json -------------------------------------------------------------------------------- /Chapter04/Step04-Master-Detail/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step04-Master-Detail/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter04/Step04-Master-Detail/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step04-Master-Detail/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter04/Step04-Master-Detail/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step04-Master-Detail/package.json -------------------------------------------------------------------------------- /Chapter04/Step04-Master-Detail/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step04-Master-Detail/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter04/Step04-Master-Detail/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step04-Master-Detail/scripts/test.sh -------------------------------------------------------------------------------- /Chapter04/Step04-Master-Detail/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step04-Master-Detail/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter04/Step04-Master-Detail/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step04-Master-Detail/src/css/main.css -------------------------------------------------------------------------------- /Chapter04/Step04-Master-Detail/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step04-Master-Detail/src/index.html -------------------------------------------------------------------------------- /Chapter04/Step04-Master-Detail/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step04-Master-Detail/src/js/app.js -------------------------------------------------------------------------------- /Chapter04/Step04-Master-Detail/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step04-Master-Detail/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter04/Step04-Master-Detail/src/js/filters.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("myApp.filters", []); 3 | -------------------------------------------------------------------------------- /Chapter04/Step04-Master-Detail/src/js/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step04-Master-Detail/src/js/services.js -------------------------------------------------------------------------------- /Chapter04/Step04-Master-Detail/test/e2e/scenarios.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step04-Master-Detail/test/e2e/scenarios.spec.js -------------------------------------------------------------------------------- /Chapter04/Step04-Master-Detail/test/lib/angular-scenario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step04-Master-Detail/test/lib/angular-scenario.js -------------------------------------------------------------------------------- /Chapter04/Step04-Master-Detail/test/unit/controllers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step04-Master-Detail/test/unit/controllers.spec.js -------------------------------------------------------------------------------- /Chapter04/Step04-Master-Detail/test/unit/filters.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter04/Step04-Master-Detail/test/unit/filters.spec.js -------------------------------------------------------------------------------- /Chapter05/Step01/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter05/Step01/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter05/Step01/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step01/Gruntfile.js -------------------------------------------------------------------------------- /Chapter05/Step01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step01/README.md -------------------------------------------------------------------------------- /Chapter05/Step01/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step01/bower.json -------------------------------------------------------------------------------- /Chapter05/Step01/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step01/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter05/Step01/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step01/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter05/Step01/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step01/package.json -------------------------------------------------------------------------------- /Chapter05/Step01/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step01/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter05/Step01/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step01/scripts/test.sh -------------------------------------------------------------------------------- /Chapter05/Step01/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step01/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter05/Step01/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step01/src/css/main.css -------------------------------------------------------------------------------- /Chapter05/Step01/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step01/src/index.html -------------------------------------------------------------------------------- /Chapter05/Step01/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step01/src/js/app.js -------------------------------------------------------------------------------- /Chapter05/Step01/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step01/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter05/Step01/src/js/filters.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("myApp.filters", []); 3 | -------------------------------------------------------------------------------- /Chapter05/Step01/test/e2e/scenarios.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step01/test/e2e/scenarios.spec.js -------------------------------------------------------------------------------- /Chapter05/Step01/test/unit/controllers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step01/test/unit/controllers.spec.js -------------------------------------------------------------------------------- /Chapter05/Step01/test/unit/filters.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step01/test/unit/filters.spec.js -------------------------------------------------------------------------------- /Chapter05/Step02-Fade/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter05/Step02-Fade/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter05/Step02-Fade/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step02-Fade/Gruntfile.js -------------------------------------------------------------------------------- /Chapter05/Step02-Fade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step02-Fade/README.md -------------------------------------------------------------------------------- /Chapter05/Step02-Fade/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step02-Fade/bower.json -------------------------------------------------------------------------------- /Chapter05/Step02-Fade/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step02-Fade/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter05/Step02-Fade/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step02-Fade/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter05/Step02-Fade/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step02-Fade/package.json -------------------------------------------------------------------------------- /Chapter05/Step02-Fade/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step02-Fade/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter05/Step02-Fade/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step02-Fade/scripts/test.sh -------------------------------------------------------------------------------- /Chapter05/Step02-Fade/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step02-Fade/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter05/Step02-Fade/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step02-Fade/src/css/main.css -------------------------------------------------------------------------------- /Chapter05/Step02-Fade/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step02-Fade/src/index.html -------------------------------------------------------------------------------- /Chapter05/Step02-Fade/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step02-Fade/src/js/app.js -------------------------------------------------------------------------------- /Chapter05/Step02-Fade/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step02-Fade/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter05/Step02-Fade/src/js/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step02-Fade/src/js/filters.js -------------------------------------------------------------------------------- /Chapter05/Step02-Fade/test/e2e/scenarios.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step02-Fade/test/e2e/scenarios.spec.js -------------------------------------------------------------------------------- /Chapter05/Step02-Fade/test/unit/controllers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step02-Fade/test/unit/controllers.spec.js -------------------------------------------------------------------------------- /Chapter05/Step02-Fade/test/unit/filters.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step02-Fade/test/unit/filters.spec.js -------------------------------------------------------------------------------- /Chapter05/Step03-Motion/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter05/Step03-Motion/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter05/Step03-Motion/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step03-Motion/Gruntfile.js -------------------------------------------------------------------------------- /Chapter05/Step03-Motion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step03-Motion/README.md -------------------------------------------------------------------------------- /Chapter05/Step03-Motion/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step03-Motion/bower.json -------------------------------------------------------------------------------- /Chapter05/Step03-Motion/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step03-Motion/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter05/Step03-Motion/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step03-Motion/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter05/Step03-Motion/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step03-Motion/package.json -------------------------------------------------------------------------------- /Chapter05/Step03-Motion/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step03-Motion/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter05/Step03-Motion/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step03-Motion/scripts/test.sh -------------------------------------------------------------------------------- /Chapter05/Step03-Motion/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step03-Motion/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter05/Step03-Motion/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step03-Motion/src/css/main.css -------------------------------------------------------------------------------- /Chapter05/Step03-Motion/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step03-Motion/src/index.html -------------------------------------------------------------------------------- /Chapter05/Step03-Motion/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step03-Motion/src/js/app.js -------------------------------------------------------------------------------- /Chapter05/Step03-Motion/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step03-Motion/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter05/Step03-Motion/src/js/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step03-Motion/src/js/filters.js -------------------------------------------------------------------------------- /Chapter05/Step03-Motion/test/e2e/scenarios.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step03-Motion/test/e2e/scenarios.spec.js -------------------------------------------------------------------------------- /Chapter05/Step03-Motion/test/unit/controllers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step03-Motion/test/unit/controllers.spec.js -------------------------------------------------------------------------------- /Chapter05/Step03-Motion/test/unit/filters.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step03-Motion/test/unit/filters.spec.js -------------------------------------------------------------------------------- /Chapter05/Step04-Bezier/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter05/Step04-Bezier/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter05/Step04-Bezier/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step04-Bezier/Gruntfile.js -------------------------------------------------------------------------------- /Chapter05/Step04-Bezier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step04-Bezier/README.md -------------------------------------------------------------------------------- /Chapter05/Step04-Bezier/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step04-Bezier/bower.json -------------------------------------------------------------------------------- /Chapter05/Step04-Bezier/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step04-Bezier/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter05/Step04-Bezier/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step04-Bezier/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter05/Step04-Bezier/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step04-Bezier/package.json -------------------------------------------------------------------------------- /Chapter05/Step04-Bezier/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step04-Bezier/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter05/Step04-Bezier/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step04-Bezier/scripts/test.sh -------------------------------------------------------------------------------- /Chapter05/Step04-Bezier/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step04-Bezier/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter05/Step04-Bezier/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step04-Bezier/src/css/main.css -------------------------------------------------------------------------------- /Chapter05/Step04-Bezier/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step04-Bezier/src/index.html -------------------------------------------------------------------------------- /Chapter05/Step04-Bezier/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step04-Bezier/src/js/app.js -------------------------------------------------------------------------------- /Chapter05/Step04-Bezier/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step04-Bezier/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter05/Step04-Bezier/src/js/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step04-Bezier/src/js/filters.js -------------------------------------------------------------------------------- /Chapter05/Step04-Bezier/test/e2e/scenarios.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step04-Bezier/test/e2e/scenarios.spec.js -------------------------------------------------------------------------------- /Chapter05/Step04-Bezier/test/unit/controllers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step04-Bezier/test/unit/controllers.spec.js -------------------------------------------------------------------------------- /Chapter05/Step04-Bezier/test/unit/filters.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step04-Bezier/test/unit/filters.spec.js -------------------------------------------------------------------------------- /Chapter05/Step05-LESS/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter05/Step05-LESS/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter05/Step05-LESS/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step05-LESS/Gruntfile.js -------------------------------------------------------------------------------- /Chapter05/Step05-LESS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step05-LESS/README.md -------------------------------------------------------------------------------- /Chapter05/Step05-LESS/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step05-LESS/bower.json -------------------------------------------------------------------------------- /Chapter05/Step05-LESS/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step05-LESS/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter05/Step05-LESS/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step05-LESS/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter05/Step05-LESS/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step05-LESS/package.json -------------------------------------------------------------------------------- /Chapter05/Step05-LESS/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step05-LESS/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter05/Step05-LESS/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step05-LESS/scripts/test.sh -------------------------------------------------------------------------------- /Chapter05/Step05-LESS/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step05-LESS/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter05/Step05-LESS/src/css/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step05-LESS/src/css/main.less -------------------------------------------------------------------------------- /Chapter05/Step05-LESS/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step05-LESS/src/index.html -------------------------------------------------------------------------------- /Chapter05/Step05-LESS/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step05-LESS/src/js/app.js -------------------------------------------------------------------------------- /Chapter05/Step05-LESS/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step05-LESS/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter05/Step05-LESS/src/js/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step05-LESS/src/js/filters.js -------------------------------------------------------------------------------- /Chapter05/Step05-LESS/test/e2e/scenarios.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step05-LESS/test/e2e/scenarios.spec.js -------------------------------------------------------------------------------- /Chapter05/Step05-LESS/test/unit/controllers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step05-LESS/test/unit/controllers.spec.js -------------------------------------------------------------------------------- /Chapter05/Step05-LESS/test/unit/filters.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step05-LESS/test/unit/filters.spec.js -------------------------------------------------------------------------------- /Chapter05/Step06-animate.css/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter05/Step06-animate.css/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter05/Step06-animate.css/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step06-animate.css/Gruntfile.js -------------------------------------------------------------------------------- /Chapter05/Step06-animate.css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step06-animate.css/README.md -------------------------------------------------------------------------------- /Chapter05/Step06-animate.css/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step06-animate.css/bower.json -------------------------------------------------------------------------------- /Chapter05/Step06-animate.css/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step06-animate.css/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter05/Step06-animate.css/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step06-animate.css/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter05/Step06-animate.css/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step06-animate.css/package.json -------------------------------------------------------------------------------- /Chapter05/Step06-animate.css/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step06-animate.css/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter05/Step06-animate.css/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step06-animate.css/scripts/test.sh -------------------------------------------------------------------------------- /Chapter05/Step06-animate.css/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step06-animate.css/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter05/Step06-animate.css/src/css/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step06-animate.css/src/css/main.less -------------------------------------------------------------------------------- /Chapter05/Step06-animate.css/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step06-animate.css/src/index.html -------------------------------------------------------------------------------- /Chapter05/Step06-animate.css/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step06-animate.css/src/js/app.js -------------------------------------------------------------------------------- /Chapter05/Step06-animate.css/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step06-animate.css/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter05/Step06-animate.css/src/js/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step06-animate.css/src/js/filters.js -------------------------------------------------------------------------------- /Chapter05/Step06-animate.css/test/e2e/scenarios.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step06-animate.css/test/e2e/scenarios.spec.js -------------------------------------------------------------------------------- /Chapter05/Step06-animate.css/test/unit/controllers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step06-animate.css/test/unit/controllers.spec.js -------------------------------------------------------------------------------- /Chapter05/Step06-animate.css/test/unit/filters.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step06-animate.css/test/unit/filters.spec.js -------------------------------------------------------------------------------- /Chapter05/Step07-Stagger/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter05/Step07-Stagger/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter05/Step07-Stagger/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step07-Stagger/Gruntfile.js -------------------------------------------------------------------------------- /Chapter05/Step07-Stagger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step07-Stagger/README.md -------------------------------------------------------------------------------- /Chapter05/Step07-Stagger/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step07-Stagger/bower.json -------------------------------------------------------------------------------- /Chapter05/Step07-Stagger/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step07-Stagger/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter05/Step07-Stagger/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step07-Stagger/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter05/Step07-Stagger/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step07-Stagger/package.json -------------------------------------------------------------------------------- /Chapter05/Step07-Stagger/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step07-Stagger/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter05/Step07-Stagger/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step07-Stagger/scripts/test.sh -------------------------------------------------------------------------------- /Chapter05/Step07-Stagger/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step07-Stagger/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter05/Step07-Stagger/src/css/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step07-Stagger/src/css/main.less -------------------------------------------------------------------------------- /Chapter05/Step07-Stagger/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step07-Stagger/src/index.html -------------------------------------------------------------------------------- /Chapter05/Step07-Stagger/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step07-Stagger/src/js/app.js -------------------------------------------------------------------------------- /Chapter05/Step07-Stagger/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step07-Stagger/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter05/Step07-Stagger/src/js/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step07-Stagger/src/js/filters.js -------------------------------------------------------------------------------- /Chapter05/Step07-Stagger/test/e2e/scenarios.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step07-Stagger/test/e2e/scenarios.spec.js -------------------------------------------------------------------------------- /Chapter05/Step07-Stagger/test/unit/controllers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step07-Stagger/test/unit/controllers.spec.js -------------------------------------------------------------------------------- /Chapter05/Step07-Stagger/test/unit/filters.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step07-Stagger/test/unit/filters.spec.js -------------------------------------------------------------------------------- /Chapter05/Step08-JS/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter05/Step08-JS/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter05/Step08-JS/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step08-JS/Gruntfile.js -------------------------------------------------------------------------------- /Chapter05/Step08-JS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step08-JS/README.md -------------------------------------------------------------------------------- /Chapter05/Step08-JS/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step08-JS/bower.json -------------------------------------------------------------------------------- /Chapter05/Step08-JS/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step08-JS/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter05/Step08-JS/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step08-JS/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter05/Step08-JS/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step08-JS/package.json -------------------------------------------------------------------------------- /Chapter05/Step08-JS/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step08-JS/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter05/Step08-JS/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step08-JS/scripts/test.sh -------------------------------------------------------------------------------- /Chapter05/Step08-JS/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step08-JS/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter05/Step08-JS/src/css/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step08-JS/src/css/main.less -------------------------------------------------------------------------------- /Chapter05/Step08-JS/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step08-JS/src/index.html -------------------------------------------------------------------------------- /Chapter05/Step08-JS/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step08-JS/src/js/app.js -------------------------------------------------------------------------------- /Chapter05/Step08-JS/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step08-JS/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter05/Step08-JS/src/js/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step08-JS/src/js/filters.js -------------------------------------------------------------------------------- /Chapter05/Step08-JS/test/e2e/scenarios.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step08-JS/test/e2e/scenarios.spec.js -------------------------------------------------------------------------------- /Chapter05/Step08-JS/test/unit/controllers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step08-JS/test/unit/controllers.spec.js -------------------------------------------------------------------------------- /Chapter05/Step08-JS/test/unit/filters.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter05/Step08-JS/test/unit/filters.spec.js -------------------------------------------------------------------------------- /Chapter06/Step01/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter06/Step01/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter06/Step01/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step01/Gruntfile.js -------------------------------------------------------------------------------- /Chapter06/Step01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step01/README.md -------------------------------------------------------------------------------- /Chapter06/Step01/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step01/bower.json -------------------------------------------------------------------------------- /Chapter06/Step01/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step01/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter06/Step01/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step01/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter06/Step01/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step01/package.json -------------------------------------------------------------------------------- /Chapter06/Step01/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step01/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter06/Step01/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step01/scripts/test.sh -------------------------------------------------------------------------------- /Chapter06/Step01/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step01/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter06/Step01/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step01/src/css/main.css -------------------------------------------------------------------------------- /Chapter06/Step01/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step01/src/index.html -------------------------------------------------------------------------------- /Chapter06/Step02-data-driven/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter06/Step02-data-driven/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter06/Step02-data-driven/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step02-data-driven/Gruntfile.js -------------------------------------------------------------------------------- /Chapter06/Step02-data-driven/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step02-data-driven/README.md -------------------------------------------------------------------------------- /Chapter06/Step02-data-driven/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step02-data-driven/bower.json -------------------------------------------------------------------------------- /Chapter06/Step02-data-driven/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step02-data-driven/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter06/Step02-data-driven/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step02-data-driven/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter06/Step02-data-driven/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step02-data-driven/package.json -------------------------------------------------------------------------------- /Chapter06/Step02-data-driven/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step02-data-driven/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter06/Step02-data-driven/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step02-data-driven/scripts/test.sh -------------------------------------------------------------------------------- /Chapter06/Step02-data-driven/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step02-data-driven/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter06/Step02-data-driven/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step02-data-driven/src/css/main.css -------------------------------------------------------------------------------- /Chapter06/Step02-data-driven/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step02-data-driven/src/index.html -------------------------------------------------------------------------------- /Chapter06/Step02-data-driven/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step02-data-driven/src/js/app.js -------------------------------------------------------------------------------- /Chapter06/Step02-data-driven/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step02-data-driven/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter06/Step03-widget/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter06/Step03-widget/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter06/Step03-widget/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step03-widget/Gruntfile.js -------------------------------------------------------------------------------- /Chapter06/Step03-widget/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step03-widget/README.md -------------------------------------------------------------------------------- /Chapter06/Step03-widget/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step03-widget/bower.json -------------------------------------------------------------------------------- /Chapter06/Step03-widget/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step03-widget/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter06/Step03-widget/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step03-widget/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter06/Step03-widget/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step03-widget/package.json -------------------------------------------------------------------------------- /Chapter06/Step03-widget/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step03-widget/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter06/Step03-widget/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step03-widget/scripts/test.sh -------------------------------------------------------------------------------- /Chapter06/Step03-widget/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step03-widget/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter06/Step03-widget/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step03-widget/src/css/main.css -------------------------------------------------------------------------------- /Chapter06/Step03-widget/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step03-widget/src/index.html -------------------------------------------------------------------------------- /Chapter06/Step03-widget/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step03-widget/src/js/app.js -------------------------------------------------------------------------------- /Chapter06/Step03-widget/src/js/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step03-widget/src/js/directives.js -------------------------------------------------------------------------------- /Chapter06/Step04-google-chart/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter06/Step04-google-chart/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter06/Step04-google-chart/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step04-google-chart/Gruntfile.js -------------------------------------------------------------------------------- /Chapter06/Step04-google-chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step04-google-chart/README.md -------------------------------------------------------------------------------- /Chapter06/Step04-google-chart/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step04-google-chart/bower.json -------------------------------------------------------------------------------- /Chapter06/Step04-google-chart/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step04-google-chart/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter06/Step04-google-chart/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step04-google-chart/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter06/Step04-google-chart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step04-google-chart/package.json -------------------------------------------------------------------------------- /Chapter06/Step04-google-chart/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step04-google-chart/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter06/Step04-google-chart/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step04-google-chart/scripts/test.sh -------------------------------------------------------------------------------- /Chapter06/Step04-google-chart/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step04-google-chart/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter06/Step04-google-chart/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step04-google-chart/src/index.html -------------------------------------------------------------------------------- /Chapter06/Step04-google-chart/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step04-google-chart/src/js/app.js -------------------------------------------------------------------------------- /Chapter06/Step04-google-chart/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step04-google-chart/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter06/Step05-dynamic/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter06/Step05-dynamic/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter06/Step05-dynamic/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step05-dynamic/Gruntfile.js -------------------------------------------------------------------------------- /Chapter06/Step05-dynamic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step05-dynamic/README.md -------------------------------------------------------------------------------- /Chapter06/Step05-dynamic/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step05-dynamic/bower.json -------------------------------------------------------------------------------- /Chapter06/Step05-dynamic/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step05-dynamic/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter06/Step05-dynamic/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step05-dynamic/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter06/Step05-dynamic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step05-dynamic/package.json -------------------------------------------------------------------------------- /Chapter06/Step05-dynamic/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step05-dynamic/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter06/Step05-dynamic/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step05-dynamic/scripts/test.sh -------------------------------------------------------------------------------- /Chapter06/Step05-dynamic/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step05-dynamic/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter06/Step05-dynamic/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step05-dynamic/src/css/main.css -------------------------------------------------------------------------------- /Chapter06/Step05-dynamic/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step05-dynamic/src/index.html -------------------------------------------------------------------------------- /Chapter06/Step05-dynamic/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step05-dynamic/src/js/app.js -------------------------------------------------------------------------------- /Chapter06/Step05-dynamic/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter06/Step05-dynamic/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter07/Step01/at-media-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step01/at-media-css.html -------------------------------------------------------------------------------- /Chapter07/Step01/at-media-features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step01/at-media-features.html -------------------------------------------------------------------------------- /Chapter07/Step01/at-media-orientation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step01/at-media-orientation.html -------------------------------------------------------------------------------- /Chapter07/Step02-twitter-bootstrap/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter07/Step02-twitter-bootstrap/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter07/Step02-twitter-bootstrap/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step02-twitter-bootstrap/Gruntfile.js -------------------------------------------------------------------------------- /Chapter07/Step02-twitter-bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step02-twitter-bootstrap/README.md -------------------------------------------------------------------------------- /Chapter07/Step02-twitter-bootstrap/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step02-twitter-bootstrap/bower.json -------------------------------------------------------------------------------- /Chapter07/Step02-twitter-bootstrap/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step02-twitter-bootstrap/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter07/Step02-twitter-bootstrap/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step02-twitter-bootstrap/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter07/Step02-twitter-bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step02-twitter-bootstrap/package.json -------------------------------------------------------------------------------- /Chapter07/Step02-twitter-bootstrap/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step02-twitter-bootstrap/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter07/Step02-twitter-bootstrap/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step02-twitter-bootstrap/scripts/test.sh -------------------------------------------------------------------------------- /Chapter07/Step02-twitter-bootstrap/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step02-twitter-bootstrap/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter07/Step02-twitter-bootstrap/src/css/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step02-twitter-bootstrap/src/css/main.less -------------------------------------------------------------------------------- /Chapter07/Step02-twitter-bootstrap/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step02-twitter-bootstrap/src/index.html -------------------------------------------------------------------------------- /Chapter07/Step02-twitter-bootstrap/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step02-twitter-bootstrap/src/js/app.js -------------------------------------------------------------------------------- /Chapter07/Step02-twitter-bootstrap/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step02-twitter-bootstrap/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter07/Step02-twitter-bootstrap/src/js/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step02-twitter-bootstrap/src/js/filters.js -------------------------------------------------------------------------------- /Chapter07/Step02-twitter-bootstrap/test/e2e/scenarios.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step02-twitter-bootstrap/test/e2e/scenarios.spec.js -------------------------------------------------------------------------------- /Chapter07/Step02-twitter-bootstrap/test/unit/controllers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step02-twitter-bootstrap/test/unit/controllers.spec.js -------------------------------------------------------------------------------- /Chapter07/Step02-twitter-bootstrap/test/unit/filters.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step02-twitter-bootstrap/test/unit/filters.spec.js -------------------------------------------------------------------------------- /Chapter07/Step03-foundation/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter07/Step03-foundation/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter07/Step03-foundation/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step03-foundation/Gruntfile.js -------------------------------------------------------------------------------- /Chapter07/Step03-foundation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step03-foundation/README.md -------------------------------------------------------------------------------- /Chapter07/Step03-foundation/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step03-foundation/bower.json -------------------------------------------------------------------------------- /Chapter07/Step03-foundation/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step03-foundation/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter07/Step03-foundation/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step03-foundation/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter07/Step03-foundation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step03-foundation/package.json -------------------------------------------------------------------------------- /Chapter07/Step03-foundation/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step03-foundation/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter07/Step03-foundation/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step03-foundation/scripts/test.sh -------------------------------------------------------------------------------- /Chapter07/Step03-foundation/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step03-foundation/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter07/Step03-foundation/src/img/80x80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step03-foundation/src/img/80x80.gif -------------------------------------------------------------------------------- /Chapter07/Step03-foundation/src/img/angular20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step03-foundation/src/img/angular20.jpg -------------------------------------------------------------------------------- /Chapter07/Step03-foundation/src/img/durandal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step03-foundation/src/img/durandal.jpg -------------------------------------------------------------------------------- /Chapter07/Step03-foundation/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step03-foundation/src/index.html -------------------------------------------------------------------------------- /Chapter07/Step03-foundation/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step03-foundation/src/js/app.js -------------------------------------------------------------------------------- /Chapter07/Step03-foundation/test/e2e/scenarios.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step03-foundation/test/e2e/scenarios.spec.js -------------------------------------------------------------------------------- /Chapter07/Step03-foundation/test/unit/controllers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step03-foundation/test/unit/controllers.spec.js -------------------------------------------------------------------------------- /Chapter07/Step03-foundation/test/unit/filters.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter07/Step03-foundation/test/unit/filters.spec.js -------------------------------------------------------------------------------- /Chapter08/Step01/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter08/Step01/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter08/Step01/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step01/Gruntfile.js -------------------------------------------------------------------------------- /Chapter08/Step01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step01/README.md -------------------------------------------------------------------------------- /Chapter08/Step01/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step01/bower.json -------------------------------------------------------------------------------- /Chapter08/Step01/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step01/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter08/Step01/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step01/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter08/Step01/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step01/package.json -------------------------------------------------------------------------------- /Chapter08/Step01/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step01/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter08/Step01/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step01/scripts/test.sh -------------------------------------------------------------------------------- /Chapter08/Step01/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step01/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter08/Step01/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step01/src/css/main.css -------------------------------------------------------------------------------- /Chapter08/Step01/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step01/src/index.html -------------------------------------------------------------------------------- /Chapter08/Step01/src/js/app.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | angular.module('myApp', []); 4 | -------------------------------------------------------------------------------- /Chapter08/Step01/test/e2e/scenarios.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step01/test/e2e/scenarios.spec.js -------------------------------------------------------------------------------- /Chapter08/Step02-accordion/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter08/Step02-accordion/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter08/Step02-accordion/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step02-accordion/Gruntfile.js -------------------------------------------------------------------------------- /Chapter08/Step02-accordion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step02-accordion/README.md -------------------------------------------------------------------------------- /Chapter08/Step02-accordion/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step02-accordion/bower.json -------------------------------------------------------------------------------- /Chapter08/Step02-accordion/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step02-accordion/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter08/Step02-accordion/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step02-accordion/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter08/Step02-accordion/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step02-accordion/package.json -------------------------------------------------------------------------------- /Chapter08/Step02-accordion/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step02-accordion/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter08/Step02-accordion/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step02-accordion/scripts/test.sh -------------------------------------------------------------------------------- /Chapter08/Step02-accordion/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step02-accordion/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter08/Step02-accordion/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step02-accordion/src/css/main.css -------------------------------------------------------------------------------- /Chapter08/Step02-accordion/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step02-accordion/src/index.html -------------------------------------------------------------------------------- /Chapter08/Step02-accordion/src/js/app.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | angular.module('myApp', ['ui.bootstrap']); 4 | -------------------------------------------------------------------------------- /Chapter08/Step02-accordion/test/e2e/scenarios.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step02-accordion/test/e2e/scenarios.spec.js -------------------------------------------------------------------------------- /Chapter08/Step03-tab/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter08/Step03-tab/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter08/Step03-tab/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step03-tab/Gruntfile.js -------------------------------------------------------------------------------- /Chapter08/Step03-tab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step03-tab/README.md -------------------------------------------------------------------------------- /Chapter08/Step03-tab/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step03-tab/bower.json -------------------------------------------------------------------------------- /Chapter08/Step03-tab/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step03-tab/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter08/Step03-tab/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step03-tab/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter08/Step03-tab/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step03-tab/package.json -------------------------------------------------------------------------------- /Chapter08/Step03-tab/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step03-tab/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter08/Step03-tab/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step03-tab/scripts/test.sh -------------------------------------------------------------------------------- /Chapter08/Step03-tab/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step03-tab/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter08/Step03-tab/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step03-tab/src/css/main.css -------------------------------------------------------------------------------- /Chapter08/Step03-tab/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step03-tab/src/index.html -------------------------------------------------------------------------------- /Chapter08/Step03-tab/src/js/app.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | angular.module('myApp', ['ui.bootstrap']); 4 | -------------------------------------------------------------------------------- /Chapter08/Step03-tab/test/e2e/scenarios.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step03-tab/test/e2e/scenarios.spec.js -------------------------------------------------------------------------------- /Chapter08/Step04-issue/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter08/Step04-issue/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter08/Step04-issue/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step04-issue/Gruntfile.js -------------------------------------------------------------------------------- /Chapter08/Step04-issue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step04-issue/README.md -------------------------------------------------------------------------------- /Chapter08/Step04-issue/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step04-issue/bower.json -------------------------------------------------------------------------------- /Chapter08/Step04-issue/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step04-issue/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter08/Step04-issue/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step04-issue/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter08/Step04-issue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step04-issue/package.json -------------------------------------------------------------------------------- /Chapter08/Step04-issue/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step04-issue/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter08/Step04-issue/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step04-issue/scripts/test.sh -------------------------------------------------------------------------------- /Chapter08/Step04-issue/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step04-issue/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter08/Step04-issue/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step04-issue/src/css/main.css -------------------------------------------------------------------------------- /Chapter08/Step04-issue/src/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step04-issue/src/images/1.png -------------------------------------------------------------------------------- /Chapter08/Step04-issue/src/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step04-issue/src/images/2.png -------------------------------------------------------------------------------- /Chapter08/Step04-issue/src/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step04-issue/src/images/3.png -------------------------------------------------------------------------------- /Chapter08/Step04-issue/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step04-issue/src/index.html -------------------------------------------------------------------------------- /Chapter08/Step04-issue/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step04-issue/src/js/app.js -------------------------------------------------------------------------------- /Chapter08/Step04-issue/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step04-issue/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter08/Step04-issue/src/views/view-issue.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step04-issue/src/views/view-issue.tpl.html -------------------------------------------------------------------------------- /Chapter08/Step04-issue/test/e2e/scenarios.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter08/Step04-issue/test/e2e/scenarios.spec.js -------------------------------------------------------------------------------- /Chapter09/Step01-pagination/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter09/Step01-pagination/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter09/Step01-pagination/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step01-pagination/Gruntfile.js -------------------------------------------------------------------------------- /Chapter09/Step01-pagination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step01-pagination/README.md -------------------------------------------------------------------------------- /Chapter09/Step01-pagination/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step01-pagination/bower.json -------------------------------------------------------------------------------- /Chapter09/Step01-pagination/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step01-pagination/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter09/Step01-pagination/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step01-pagination/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter09/Step01-pagination/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step01-pagination/package.json -------------------------------------------------------------------------------- /Chapter09/Step01-pagination/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step01-pagination/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter09/Step01-pagination/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step01-pagination/scripts/test.sh -------------------------------------------------------------------------------- /Chapter09/Step01-pagination/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step01-pagination/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter09/Step01-pagination/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step01-pagination/src/css/main.css -------------------------------------------------------------------------------- /Chapter09/Step01-pagination/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step01-pagination/src/index.html -------------------------------------------------------------------------------- /Chapter09/Step01-pagination/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step01-pagination/src/js/app.js -------------------------------------------------------------------------------- /Chapter09/Step01-pagination/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step01-pagination/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter09/Step01-pagination/test/e2e/scenarios.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step01-pagination/test/e2e/scenarios.spec.js -------------------------------------------------------------------------------- /Chapter09/Step02-tabs/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter09/Step02-tabs/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter09/Step02-tabs/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step02-tabs/Gruntfile.js -------------------------------------------------------------------------------- /Chapter09/Step02-tabs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step02-tabs/README.md -------------------------------------------------------------------------------- /Chapter09/Step02-tabs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step02-tabs/bower.json -------------------------------------------------------------------------------- /Chapter09/Step02-tabs/conf/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step02-tabs/conf/karma-e2e.conf.js -------------------------------------------------------------------------------- /Chapter09/Step02-tabs/conf/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step02-tabs/conf/karma.conf.js -------------------------------------------------------------------------------- /Chapter09/Step02-tabs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step02-tabs/package.json -------------------------------------------------------------------------------- /Chapter09/Step02-tabs/scripts/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step02-tabs/scripts/test-e2e.sh -------------------------------------------------------------------------------- /Chapter09/Step02-tabs/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step02-tabs/scripts/test.sh -------------------------------------------------------------------------------- /Chapter09/Step02-tabs/scripts/web-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step02-tabs/scripts/web-server.js -------------------------------------------------------------------------------- /Chapter09/Step02-tabs/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step02-tabs/src/css/main.css -------------------------------------------------------------------------------- /Chapter09/Step02-tabs/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step02-tabs/src/index.html -------------------------------------------------------------------------------- /Chapter09/Step02-tabs/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step02-tabs/src/js/app.js -------------------------------------------------------------------------------- /Chapter09/Step02-tabs/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step02-tabs/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter09/Step02-tabs/test/e2e/scenarios.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter09/Step02-tabs/test/e2e/scenarios.spec.js -------------------------------------------------------------------------------- /Chapter10/Step01-mobile/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "src/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter10/Step01-mobile/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | src/bower_components 4 | -------------------------------------------------------------------------------- /Chapter10/Step01-mobile/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter10/Step01-mobile/Gruntfile.js -------------------------------------------------------------------------------- /Chapter10/Step01-mobile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter10/Step01-mobile/README.md -------------------------------------------------------------------------------- /Chapter10/Step01-mobile/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter10/Step01-mobile/bower.json -------------------------------------------------------------------------------- /Chapter10/Step01-mobile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter10/Step01-mobile/package.json -------------------------------------------------------------------------------- /Chapter10/Step01-mobile/src/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter10/Step01-mobile/src/css/style.css -------------------------------------------------------------------------------- /Chapter10/Step01-mobile/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter10/Step01-mobile/src/index.html -------------------------------------------------------------------------------- /Chapter10/Step01-mobile/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter10/Step01-mobile/src/js/app.js -------------------------------------------------------------------------------- /Chapter10/Step01-mobile/src/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter10/Step01-mobile/src/js/controllers.js -------------------------------------------------------------------------------- /Chapter10/Step01-mobile/src/js/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter10/Step01-mobile/src/js/services.js -------------------------------------------------------------------------------- /Chapter10/Step01-mobile/src/views/bookmarks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/Chapter10/Step01-mobile/src/views/bookmarks.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasn/AngularUI-Code/HEAD/README.md --------------------------------------------------------------------------------