├── .gitignore ├── Appendix A ├── Listing_A.10_main.js ├── Listing_A.11_protractor.conf.js ├── Listing_A.12_aurelia.json ├── Listing_A.13_e2e.js ├── Listing_A.1_aurelia.json ├── Listing_A.2_app.js ├── Listing_A.3_aurelia.json ├── Listing_A.4_copy-fonts.js ├── Listing_A.5_aurelia.json ├── Listing_A.6.build.js ├── Listing_A.7_main.js ├── Listing_A.8_main.js └── Listing_A.9_aurelia.json ├── Chapter-10-Complete └── my-books │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitignore │ ├── aurelia_project │ ├── aurelia.json │ ├── environments │ │ ├── dev.js │ │ ├── prod.js │ │ └── stage.js │ ├── generators │ │ ├── attribute.js │ │ ├── attribute.json │ │ ├── binding-behavior.js │ │ ├── binding-behavior.json │ │ ├── element.js │ │ ├── element.json │ │ ├── generator.js │ │ ├── generator.json │ │ ├── task.js │ │ ├── task.json │ │ ├── value-converter.js │ │ └── value-converter.json │ └── tasks │ │ ├── build.js │ │ ├── build.json │ │ ├── copy-files.js │ │ ├── copy-fonts.js │ │ ├── process-css.js │ │ ├── process-markup.js │ │ ├── run.js │ │ ├── run.json │ │ ├── styles.css │ │ ├── test.js │ │ ├── test.json │ │ └── transpile.js │ ├── books.json │ ├── favicon.ico │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 │ ├── images │ └── background.jpeg │ ├── index.html │ ├── jsconfig.json │ ├── karma.conf.js │ ├── package.json │ ├── src │ ├── app.html │ ├── app.js │ ├── environment.js │ ├── index.html │ ├── index.js │ ├── login-layout.html │ ├── login-styles.css │ ├── main-layout.html │ ├── main-layout.js │ ├── main.js │ ├── renderers │ │ └── bootstrap-form-renderer.js │ ├── resources │ │ ├── attributes │ │ │ └── tooltip.js │ │ ├── elements │ │ │ ├── admin-unknown-route.html │ │ │ ├── book-list.html │ │ │ ├── book-list.js │ │ │ ├── book-stats.html │ │ │ ├── book-stats.js │ │ │ ├── book.html │ │ │ ├── book.js │ │ │ ├── books.html │ │ │ ├── books.js │ │ │ ├── edit-book.html │ │ │ ├── edit-book.js │ │ │ ├── heading.html │ │ │ ├── loader.html │ │ │ ├── login-styles.html │ │ │ ├── login.html │ │ │ ├── login.js │ │ │ ├── main-page-layout.html │ │ │ ├── nav-bar.html │ │ │ ├── nav-bar.js │ │ │ ├── star-rating.html │ │ │ ├── star-rating.js │ │ │ ├── user-details.html │ │ │ ├── user-details.js │ │ │ ├── users.html │ │ │ ├── users.js │ │ │ └── what-happened.html │ │ ├── index.js │ │ └── value-converters │ │ │ ├── auth-filter.js │ │ │ ├── book-status.js │ │ │ ├── date-format.js │ │ │ ├── filter.js │ │ │ ├── highlight.js │ │ │ └── search-bold.js │ ├── router-steps │ │ └── authorization-step.js │ ├── services │ │ ├── auth-service.js │ │ ├── book-api-jsonp.js │ │ ├── book-api.js │ │ └── user-api.js │ └── styles.css │ └── test │ ├── aurelia-karma.js │ └── unit │ ├── app.spec.js │ └── setup.js ├── Chapter-10 ├── Listing_10.10_nav-bar.js ├── Listing_10.11_nav-bar.html ├── Listing_10.12_main-layout.html ├── Listing_10.1_auth-service.js ├── Listing_10.2_login.js ├── Listing_10.3_login.html ├── Listing_10.4_auth-service.js ├── Listing_10.5_app.js ├── Listing_10.6_authorization-step.js ├── Listing_10.7_app.js ├── Listing_10.8_auth-service.js └── Listing_10.9_auth-filter.js ├── Chapter-11 ├── LIsting_11.1_app.html ├── Listing_11.10_au-text-area.html ├── Listing_11.11_au-checkbox.js ├── Listing_11.12_au-checkbox.html ├── Listing_11.13_app.html ├── Listing_11.2_app.js ├── Listing_11.3_info-card.html ├── Listing_11.4_app.html ├── Listing_11.5_au-form.js ├── Listing_11.6_au-form.html ├── Listing_11.7_au-textbox.js ├── Listing_11.8_au-textbox.html └── Listing_11.9_au-text-area.js ├── Chapter-12-Complete └── my-books │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitignore │ ├── aurelia_project │ ├── aurelia.json │ ├── environments │ │ ├── dev.js │ │ ├── prod.js │ │ └── stage.js │ ├── generators │ │ ├── attribute.js │ │ ├── attribute.json │ │ ├── binding-behavior.js │ │ ├── binding-behavior.json │ │ ├── element.js │ │ ├── element.json │ │ ├── generator.js │ │ ├── generator.json │ │ ├── task.js │ │ ├── task.json │ │ ├── value-converter.js │ │ └── value-converter.json │ └── tasks │ │ ├── build.js │ │ ├── build.json │ │ ├── copy-files.js │ │ ├── copy-fonts.js │ │ ├── process-css.js │ │ ├── process-markup.js │ │ ├── run.js │ │ ├── run.json │ │ ├── styles.css │ │ ├── test.js │ │ ├── test.json │ │ └── transpile.js │ ├── books.json │ ├── favicon.ico │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 │ ├── images │ └── background.jpeg │ ├── index.html │ ├── jsconfig.json │ ├── karma.conf.js │ ├── package.json │ ├── src │ ├── app.html │ ├── app.js │ ├── environment.js │ ├── index.html │ ├── index.js │ ├── login-layout.html │ ├── login-styles.css │ ├── main-layout.html │ ├── main-layout.js │ ├── main.js │ ├── renderers │ │ └── bootstrap-form-renderer.js │ ├── resources │ │ ├── attributes │ │ │ └── tooltip.js │ │ ├── components │ │ │ ├── ux-card.html │ │ │ ├── ux-font-block.html │ │ │ ├── ux-tags.html │ │ │ ├── ux-tags.js │ │ │ ├── ux-text-area.html │ │ │ ├── ux-text-area.js │ │ │ ├── ux-thumbnail-image.html │ │ │ └── ux-thumbnail-image.js │ │ ├── elements │ │ │ ├── admin-unknown-route.html │ │ │ ├── book-list.html │ │ │ ├── book-list.js │ │ │ ├── book-stats.html │ │ │ ├── book-stats.js │ │ │ ├── book.html │ │ │ ├── book.js │ │ │ ├── books.html │ │ │ ├── books.js │ │ │ ├── edit-book.html │ │ │ ├── edit-book.js │ │ │ ├── heading.html │ │ │ ├── loader.html │ │ │ ├── login-styles.html │ │ │ ├── login.html │ │ │ ├── login.js │ │ │ ├── main-page-layout.html │ │ │ ├── nav-bar.html │ │ │ ├── nav-bar.js │ │ │ ├── parent.html │ │ │ ├── parent.js │ │ │ ├── share-book-card.html │ │ │ ├── share-book.html │ │ │ ├── share-book.js │ │ │ ├── star-rating.html │ │ │ ├── star-rating.js │ │ │ ├── user-details.html │ │ │ ├── user-details.js │ │ │ ├── users.html │ │ │ ├── users.js │ │ │ └── what-happened.html │ │ ├── index.js │ │ └── value-converters │ │ │ ├── auth-filter.js │ │ │ ├── book-status.js │ │ │ ├── date-format.js │ │ │ ├── filter.js │ │ │ ├── highlight.js │ │ │ └── search-bold.js │ ├── router-steps │ │ └── authorization-step.js │ ├── services │ │ ├── auth-service.js │ │ ├── book-api-jsonp.js │ │ ├── book-api.js │ │ └── user-api.js │ └── styles.css │ └── test │ ├── aurelia-karma.js │ └── unit │ ├── app.spec.js │ └── setup.js ├── Chapter-12 ├── Listing_12.10_info-card.html ├── Listing_12.11_app.html ├── Listing_12.12_book.html ├── Listing_12.13_book.js ├── Listing_12.14_share-book.js ├── Listing_12.15_share-book.html ├── Listing_12.16_ux-card.html ├── Listing_12.17_ux-text-area.js ├── Listing_12.18_ux-text-area.html ├── Listing_12.19_ux-thumbnail-image.js ├── Listing_12.1_index.html ├── Listing_12.20_ux-thumbnail-image.html ├── Listing_12.21_share-book-card.html ├── Listing_12.22-ux-font-block.html ├── Listing_12.23_share-book.html ├── Listing_12.2_main.js ├── Listing_12.3_greetings.html ├── Listing_12.4_info-card.html ├── Listing_12.5_info-card.js ├── Listing_12.6_info-card.html ├── Listing_12.7_x-info-card.js ├── Listing_12.8_scoped-css.html └── Listing_12.9_info-card.js ├── Chapter-13-Complete └── my-books │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitignore │ ├── aurelia_project │ ├── aurelia.json │ ├── environments │ │ ├── dev.js │ │ ├── prod.js │ │ └── stage.js │ ├── generators │ │ ├── attribute.js │ │ ├── attribute.json │ │ ├── binding-behavior.js │ │ ├── binding-behavior.json │ │ ├── element.js │ │ ├── element.json │ │ ├── generator.js │ │ ├── generator.json │ │ ├── task.js │ │ ├── task.json │ │ ├── value-converter.js │ │ └── value-converter.json │ └── tasks │ │ ├── build.js │ │ ├── build.json │ │ ├── copy-files.js │ │ ├── copy-fonts.js │ │ ├── process-css.js │ │ ├── process-markup.js │ │ ├── run.js │ │ ├── run.json │ │ ├── styles.css │ │ ├── test.js │ │ ├── test.json │ │ └── transpile.js │ ├── books.json │ ├── favicon.ico │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 │ ├── images │ └── background.jpeg │ ├── index.html │ ├── jsconfig.json │ ├── karma.conf.js │ ├── package.json │ ├── src │ ├── app.html │ ├── app.js │ ├── environment.js │ ├── index.html │ ├── index.js │ ├── login-layout.html │ ├── login-styles.css │ ├── main-layout.html │ ├── main-layout.js │ ├── main.js │ ├── renderers │ │ └── bootstrap-form-renderer.js │ ├── resources │ │ ├── attributes │ │ │ ├── au-selectize.js │ │ │ └── tooltip.js │ │ ├── components │ │ │ ├── ux-card.html │ │ │ ├── ux-font-block.html │ │ │ ├── ux-tags.html │ │ │ ├── ux-tags.js │ │ │ ├── ux-text-area.html │ │ │ ├── ux-text-area.js │ │ │ ├── ux-thumbnail-image.html │ │ │ └── ux-thumbnail-image.js │ │ ├── elements │ │ │ ├── admin-unknown-route.html │ │ │ ├── book-list.html │ │ │ ├── book-list.js │ │ │ ├── book-stats.html │ │ │ ├── book-stats.js │ │ │ ├── book.html │ │ │ ├── book.js │ │ │ ├── books.html │ │ │ ├── books.js │ │ │ ├── edit-book.html │ │ │ ├── edit-book.js │ │ │ ├── heading.html │ │ │ ├── loader.html │ │ │ ├── login-styles.html │ │ │ ├── login.html │ │ │ ├── login.js │ │ │ ├── main-page-layout.html │ │ │ ├── nav-bar.html │ │ │ ├── nav-bar.js │ │ │ ├── parent.html │ │ │ ├── parent.js │ │ │ ├── share-book-card.html │ │ │ ├── share-book.html │ │ │ ├── share-book.js │ │ │ ├── star-rating.html │ │ │ ├── star-rating.js │ │ │ ├── user-details.html │ │ │ ├── user-details.js │ │ │ ├── users.html │ │ │ ├── users.js │ │ │ └── what-happened.html │ │ ├── index.js │ │ └── value-converters │ │ │ ├── auth-filter.js │ │ │ ├── book-status.js │ │ │ ├── date-format.js │ │ │ ├── filter.js │ │ │ ├── highlight.js │ │ │ └── search-bold.js │ ├── router-steps │ │ └── authorization-step.js │ ├── services │ │ ├── auth-service.js │ │ ├── book-api-jsonp.js │ │ ├── book-api.js │ │ └── user-api.js │ └── styles.css │ └── test │ ├── aurelia-karma.js │ └── unit │ ├── app.spec.js │ └── setup.js ├── Chapter-13 ├── Listing_13.10_app.html ├── Listing_13.11_red.js ├── Listing_13.12_app.html ├── Listing_13.13_inspect-binding-behavior.js ├── Listing_13.14_app.html ├── Listing_13.15_au-selectize.js ├── Listing_13.16_user-details.html ├── Listing_13.17_user-details.js ├── Listing_13.1_bootstrap-select.js ├── Listing_13.2_my-select.html ├── Listing_13.3_app.html ├── Listing_13.4_alerter.js ├── Listing_13.5_app.html ├── Listing_13.6_alerter-inline.js ├── Listing_13.7_app.html ├── Listing_13.8_bootstrap-select-custom-element.js └── Listing_13.9_bootstrap-select-custom-element.html ├── Chapter-14-Complete └── my-books │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitignore │ ├── aurelia_project │ ├── aurelia.json │ ├── environments │ │ ├── dev.js │ │ ├── prod.js │ │ └── stage.js │ ├── generators │ │ ├── attribute.js │ │ ├── attribute.json │ │ ├── binding-behavior.js │ │ ├── binding-behavior.json │ │ ├── element.js │ │ ├── element.json │ │ ├── generator.js │ │ ├── generator.json │ │ ├── task.js │ │ ├── task.json │ │ ├── value-converter.js │ │ └── value-converter.json │ └── tasks │ │ ├── build.js │ │ ├── build.json │ │ ├── copy-files.js │ │ ├── copy-fonts.js │ │ ├── process-css.js │ │ ├── process-markup.js │ │ ├── run.js │ │ ├── run.json │ │ ├── styles.css │ │ ├── test.js │ │ ├── test.json │ │ └── transpile.js │ ├── books.json │ ├── favicon.ico │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 │ ├── images │ └── background.jpeg │ ├── index.html │ ├── jsconfig.json │ ├── karma.conf.js │ ├── package.json │ ├── src │ ├── app.html │ ├── app.js │ ├── environment.js │ ├── index.html │ ├── index.js │ ├── login-layout.html │ ├── login-styles.css │ ├── main-layout.html │ ├── main-layout.js │ ├── main.js │ ├── renderers │ │ └── bootstrap-form-renderer.js │ ├── resources │ │ ├── attributes │ │ │ ├── au-selectize.js │ │ │ └── tooltip.js │ │ ├── components │ │ │ ├── ux-card.html │ │ │ ├── ux-font-block.html │ │ │ ├── ux-tags.html │ │ │ ├── ux-tags.js │ │ │ ├── ux-text-area.html │ │ │ ├── ux-text-area.js │ │ │ ├── ux-thumbnail-image.html │ │ │ └── ux-thumbnail-image.js │ │ ├── elements │ │ │ ├── admin-unknown-route.html │ │ │ ├── book-list.html │ │ │ ├── book-list.js │ │ │ ├── book-stats.html │ │ │ ├── book-stats.js │ │ │ ├── book.html │ │ │ ├── book.js │ │ │ ├── books.html │ │ │ ├── books.js │ │ │ ├── edit-book.html │ │ │ ├── edit-book.js │ │ │ ├── heading.html │ │ │ ├── loader.html │ │ │ ├── login-styles.html │ │ │ ├── login.html │ │ │ ├── login.js │ │ │ ├── main-page-layout.html │ │ │ ├── nav-bar.html │ │ │ ├── nav-bar.js │ │ │ ├── parent.html │ │ │ ├── parent.js │ │ │ ├── share-book-card.html │ │ │ ├── share-book.html │ │ │ ├── share-book.js │ │ │ ├── star-rating.html │ │ │ ├── star-rating.js │ │ │ ├── user-details.html │ │ │ ├── user-details.js │ │ │ ├── users.html │ │ │ ├── users.js │ │ │ └── what-happened.html │ │ ├── index.js │ │ └── value-converters │ │ │ ├── auth-filter.js │ │ │ ├── book-status.js │ │ │ ├── date-format.js │ │ │ ├── filter.js │ │ │ ├── highlight.js │ │ │ └── search-bold.js │ ├── router-steps │ │ └── authorization-step.js │ ├── services │ │ ├── auth-service.js │ │ ├── book-api-jsonp.js │ │ ├── book-api.js │ │ └── user-api.js │ └── styles.css │ └── test │ ├── aurelia-karma.js │ └── unit │ ├── app.spec.js │ └── setup.js ├── Chapter-14 ├── Listing_14.1_styles.css ├── Listing_14.2_index.html ├── Listing_14.3_book.html ├── Listing_14.4_styles.css ├── Listing_14.5_index.html ├── Listing_14.6_index.js └── Listing_14.7_styles.css ├── Chapter-15-Complete └── my-books │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitignore │ ├── aurelia_project │ ├── aurelia.json │ ├── environments │ │ ├── dev.js │ │ ├── prod.js │ │ └── stage.js │ ├── generators │ │ ├── attribute.js │ │ ├── attribute.json │ │ ├── binding-behavior.js │ │ ├── binding-behavior.json │ │ ├── element.js │ │ ├── element.json │ │ ├── generator.js │ │ ├── generator.json │ │ ├── task.js │ │ ├── task.json │ │ ├── value-converter.js │ │ └── value-converter.json │ └── tasks │ │ ├── build.js │ │ ├── build.json │ │ ├── copy-files.js │ │ ├── copy-fonts.js │ │ ├── e2e.js │ │ ├── process-css.js │ │ ├── process-markup.js │ │ ├── run.js │ │ ├── run.json │ │ ├── styles.css │ │ ├── test.js │ │ ├── test.json │ │ └── transpile.js │ ├── books.json │ ├── favicon.ico │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 │ ├── images │ └── background.jpeg │ ├── index.html │ ├── jsconfig.json │ ├── karma.conf.js │ ├── package.json │ ├── protractor.conf.js │ ├── src │ ├── app.html │ ├── app.js │ ├── environment.js │ ├── index.html │ ├── index.js │ ├── login-layout.html │ ├── login-styles.css │ ├── main-layout.html │ ├── main-layout.js │ ├── main.js │ ├── renderers │ │ └── bootstrap-form-renderer.js │ ├── resources │ │ ├── attributes │ │ │ ├── au-selectize.js │ │ │ └── tooltip.js │ │ ├── components │ │ │ ├── ux-card.html │ │ │ ├── ux-font-block.html │ │ │ ├── ux-tags.html │ │ │ ├── ux-tags.js │ │ │ ├── ux-text-area.html │ │ │ ├── ux-text-area.js │ │ │ ├── ux-thumbnail-image.html │ │ │ └── ux-thumbnail-image.js │ │ ├── elements │ │ │ ├── admin-unknown-route.html │ │ │ ├── book-list.html │ │ │ ├── book-list.js │ │ │ ├── book-stats.html │ │ │ ├── book-stats.js │ │ │ ├── book.html │ │ │ ├── book.js │ │ │ ├── books.html │ │ │ ├── books.js │ │ │ ├── edit-book.html │ │ │ ├── edit-book.js │ │ │ ├── heading.html │ │ │ ├── hello.html │ │ │ ├── hello.js │ │ │ ├── loader.html │ │ │ ├── login-styles.html │ │ │ ├── login.html │ │ │ ├── login.js │ │ │ ├── main-page-layout.html │ │ │ ├── nav-bar.html │ │ │ ├── nav-bar.js │ │ │ ├── parent.html │ │ │ ├── parent.js │ │ │ ├── share-book-card.html │ │ │ ├── share-book.html │ │ │ ├── share-book.js │ │ │ ├── star-rating.html │ │ │ ├── star-rating.js │ │ │ ├── user-details.html │ │ │ ├── user-details.js │ │ │ ├── users.html │ │ │ ├── users.js │ │ │ └── what-happened.html │ │ ├── index.js │ │ └── value-converters │ │ │ ├── auth-filter.js │ │ │ ├── book-status.js │ │ │ ├── date-format.js │ │ │ ├── filter.js │ │ │ ├── highlight.js │ │ │ └── search-bold.js │ ├── router-steps │ │ └── authorization-step.js │ ├── services │ │ ├── auth-service.js │ │ ├── book-api-jsonp.js │ │ ├── book-api.js │ │ └── user-api.js │ └── styles.css │ └── test │ ├── aurelia-karma.js │ ├── e2e │ ├── dist │ │ ├── app.po.js │ │ ├── app.po.js.map │ │ ├── login.po.js │ │ ├── login.po.js.map │ │ ├── login.spec.js │ │ └── login.spec.js.map │ └── src │ │ ├── app.po.js │ │ ├── login.po.js │ │ └── login.spec.js │ └── unit │ ├── filter.spec.js │ ├── greeter.js │ ├── greeter.spec.js │ ├── hello.spec.js │ ├── setup.js │ ├── test-data.js │ ├── test-helper.js │ ├── tooltip.spec.js │ ├── user-api.spec.js │ └── ux-text-area.spec.js ├── Chapter-15 ├── Listing_15.10_ux-text-area.spec.js ├── Listing_15.11_tooltip.spec.js ├── Listing_15.12_app.po.js ├── Listing_15.13_login.po.js ├── Listing_15.14_login.spec.js ├── Listing_15.1_greeter.js ├── Listing_15.2_greeter-spec.js ├── Listing_15.3_test-data.js ├── Listing_15.4_filter.spec.js ├── Listing_15.5_test-helper.js ├── Listing_15.6_user-api.spec.js ├── Listing_15.7_test-helper.js ├── Listing_15.8_ux-text-area.spec.js └── Listing_15.9_ux-text-area.spec.js ├── Chapter-16-Complete └── my-books │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitignore │ ├── aurelia_project │ ├── aurelia.json │ ├── environments │ │ ├── dev.js │ │ ├── prod.js │ │ └── stage.js │ ├── generators │ │ ├── attribute.js │ │ ├── attribute.json │ │ ├── binding-behavior.js │ │ ├── binding-behavior.json │ │ ├── element.js │ │ ├── element.json │ │ ├── generator.js │ │ ├── generator.json │ │ ├── task.js │ │ ├── task.json │ │ ├── value-converter.js │ │ └── value-converter.json │ └── tasks │ │ ├── build.js │ │ ├── build.json │ │ ├── copy-files.js │ │ ├── copy-fonts.js │ │ ├── process-css.js │ │ ├── process-markup.js │ │ ├── run.js │ │ ├── run.json │ │ ├── styles.css │ │ ├── test.js │ │ ├── test.json │ │ └── transpile.js │ ├── books.json │ ├── favicon.ico │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 │ ├── index.html │ ├── jsconfig.json │ ├── karma.conf.js │ ├── package.json │ ├── src │ ├── app.html │ ├── app.js │ ├── books │ │ ├── resources │ │ │ ├── elements │ │ │ │ ├── book-list.html │ │ │ │ ├── book-list.js │ │ │ │ ├── book-stats.html │ │ │ │ ├── book-stats.js │ │ │ │ ├── book.html │ │ │ │ ├── book.js │ │ │ │ ├── books.html │ │ │ │ ├── books.js │ │ │ │ ├── edit-book.html │ │ │ │ └── edit-book.js │ │ │ └── value-converters │ │ │ │ └── book-status.js │ │ └── services │ │ │ └── book-api.js │ ├── environment.js │ ├── index.html │ ├── index.js │ ├── main.js │ ├── renderers │ │ └── bootstrap-form-renderer.js │ ├── resources │ │ ├── attributes │ │ │ └── tooltip.js │ │ ├── elements │ │ │ ├── heading.html │ │ │ ├── loader.html │ │ │ ├── star-rating.html │ │ │ └── star-rating.js │ │ ├── index.js │ │ └── value-converters │ │ │ ├── date-format.js │ │ │ ├── filter.js │ │ │ ├── highlight.js │ │ │ └── search-bold.js │ └── styles.css │ └── test │ ├── aurelia-karma.js │ └── unit │ ├── app.spec.js │ └── setup.js ├── Chapter-16 ├── Listing_16.1_aurelia.json ├── Listing_16.2_aurelia.json ├── Listing_16.3_aurelia.json └── Listing_16.4_package.json ├── Chapter-2-Complete └── my-books │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitignore │ ├── aurelia_project │ ├── aurelia.json │ ├── environments │ │ ├── dev.js │ │ ├── prod.js │ │ └── stage.js │ ├── generators │ │ ├── attribute.js │ │ ├── attribute.json │ │ ├── binding-behavior.js │ │ ├── binding-behavior.json │ │ ├── element.js │ │ ├── element.json │ │ ├── generator.js │ │ ├── generator.json │ │ ├── task.js │ │ ├── task.json │ │ ├── value-converter.js │ │ └── value-converter.json │ └── tasks │ │ ├── build.js │ │ ├── build.json │ │ ├── copy-files.js │ │ ├── process-css.js │ │ ├── process-markup.js │ │ ├── run.js │ │ ├── run.json │ │ ├── test.js │ │ ├── test.json │ │ └── transpile.js │ ├── books.json │ ├── favicon.ico │ ├── index.html │ ├── jsconfig.json │ ├── karma.conf.js │ ├── package.json │ ├── scripts │ ├── app-bundle.js │ ├── app-bundle.js.map │ └── vendor-bundle.js │ ├── src │ ├── app.html │ ├── app.js │ ├── environment.js │ ├── index.html │ ├── index.js │ ├── main.js │ ├── resources │ │ ├── elements │ │ │ ├── book-list.html │ │ │ ├── book-list.js │ │ │ ├── books.html │ │ │ ├── books.js │ │ │ ├── index.html │ │ │ └── index.js │ │ └── index.js │ └── services │ │ └── book-api.js │ └── test │ ├── aurelia-karma.js │ └── unit │ ├── app.spec.js │ └── setup.js ├── Chapter-2 ├── Listing_2.10_app.js ├── Listing_2.11_app.js ├── Listing_2.12_app.html ├── Listing_2.13_index.js ├── Listing_2.14_index.html ├── Listing_2.15_books.js ├── Listing_2.16_books.html ├── Listing_2.17_app.js ├── Listing_2.18_books.js ├── Listing_2.1_app.js ├── Listing_2.2_app.html ├── Listing_2.3_app.html ├── Listing_2.4_book-list.js ├── Listing_2.5_book-list.html ├── Listing_2.6_app.html ├── Listing_2.7_books.json ├── Listing_2.8_aurelia.json └── Listing_2.9_book-api.js ├── Chapter-3-Complete └── my-books │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitignore │ ├── aurelia_project │ ├── aurelia.json │ ├── environments │ │ ├── dev.js │ │ ├── prod.js │ │ └── stage.js │ ├── generators │ │ ├── attribute.js │ │ ├── attribute.json │ │ ├── binding-behavior.js │ │ ├── binding-behavior.json │ │ ├── element.js │ │ ├── element.json │ │ ├── generator.js │ │ ├── generator.json │ │ ├── task.js │ │ ├── task.json │ │ ├── value-converter.js │ │ └── value-converter.json │ └── tasks │ │ ├── build.js │ │ ├── build.json │ │ ├── copy-files.js │ │ ├── copy-fonts.js │ │ ├── process-css.js │ │ ├── process-markup.js │ │ ├── run.js │ │ ├── run.json │ │ ├── styles.css │ │ ├── test.js │ │ ├── test.json │ │ └── transpile.js │ ├── books.json │ ├── favicon.ico │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 │ ├── index.html │ ├── jsconfig.json │ ├── karma.conf.js │ ├── package.json │ ├── src │ ├── app.html │ ├── app.js │ ├── environment.js │ ├── index.html │ ├── index.js │ ├── main.js │ ├── resources │ │ ├── attributes │ │ │ └── tooltip.js │ │ ├── elements │ │ │ ├── book-list.html │ │ │ ├── book-list.js │ │ │ ├── books.html │ │ │ ├── books.js │ │ │ └── heading.html │ │ └── index.js │ ├── services │ │ └── book-api.js │ └── styles.css │ └── test │ ├── aurelia-karma.js │ └── unit │ ├── app.spec.js │ └── setup.js ├── Chapter-3 ├── Listing_3.10_books.html ├── Listing_3.10_heading.html ├── Listing_3.11_books.html ├── Listing_3.12_books.html ├── Listing_3.13_heading.html ├── Listing_3.14_books.html ├── Listing_3.15_tooltip..js ├── Listing_3.16_book-list.html ├── Listing_3.17_book-list.js ├── Listing_3.18_tooltip.js ├── Listing_3.19_book-list.html ├── Listing_3.1_index.html ├── Listing_3.20_tooltip.js ├── Listing_3.21_book-list.html ├── Listing_3.2_app.html ├── Listing_3.3_app.html ├── Listing_3.4_book-list.html ├── Listing_3.5_books.html ├── Listing_3.6.index.html ├── Listing_3.7_books.html ├── Listing_3.8_books.js └── Listing_3.9_heading.html ├── Chapter-4-Complete └── my-books │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitignore │ ├── aurelia_project │ ├── aurelia.json │ ├── environments │ │ ├── dev.js │ │ ├── prod.js │ │ └── stage.js │ ├── generators │ │ ├── attribute.js │ │ ├── attribute.json │ │ ├── binding-behavior.js │ │ ├── binding-behavior.json │ │ ├── element.js │ │ ├── element.json │ │ ├── generator.js │ │ ├── generator.json │ │ ├── task.js │ │ ├── task.json │ │ ├── value-converter.js │ │ └── value-converter.json │ └── tasks │ │ ├── build.js │ │ ├── build.json │ │ ├── copy-files.js │ │ ├── copy-fonts.js │ │ ├── process-css.js │ │ ├── process-markup.js │ │ ├── run.js │ │ ├── run.json │ │ ├── styles.css │ │ ├── test.js │ │ ├── test.json │ │ └── transpile.js │ ├── books.json │ ├── favicon.ico │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 │ ├── index.html │ ├── jsconfig.json │ ├── karma.conf.js │ ├── package.json │ ├── scripts │ └── app-bundle.js.map │ ├── src │ ├── app.html │ ├── app.js │ ├── environment.js │ ├── index.html │ ├── index.js │ ├── main.js │ ├── resources │ │ ├── attributes │ │ │ └── tooltip.js │ │ ├── elements │ │ │ ├── book-list.html │ │ │ ├── book-list.js │ │ │ ├── book-stats.html │ │ │ ├── book-stats.js │ │ │ ├── books.html │ │ │ ├── books.js │ │ │ └── heading.html │ │ └── index.js │ ├── services │ │ └── book-api.js │ └── styles.css │ └── test │ ├── aurelia-karma.js │ └── unit │ ├── app.spec.js │ └── setup.js ├── Chapter-4 ├── Listing_4.10_books.js ├── Listing_4.11_books.html ├── Listing_4.12_books.js ├── Listing_4.13_books.html ├── Listing_4.14_books.html ├── Listing_4.15_book-list.html ├── Listing_4.1_book-stats.js ├── Listing_4.2_book-stats.html ├── Listing_4.3_books.html ├── Listing_4.4_book-list.html ├── Listing_4.5_books.html ├── Listing_4.6_book-list.html ├── Listing_4.7_book-list.js ├── Listing_4.8_app.html └── Listing_4.9_app.js ├── Chapter-5-Complete └── my-books │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitignore │ ├── aurelia_project │ ├── aurelia.json │ ├── environments │ │ ├── dev.js │ │ ├── prod.js │ │ └── stage.js │ ├── generators │ │ ├── attribute.js │ │ ├── attribute.json │ │ ├── binding-behavior.js │ │ ├── binding-behavior.json │ │ ├── element.js │ │ ├── element.json │ │ ├── generator.js │ │ ├── generator.json │ │ ├── task.js │ │ ├── task.json │ │ ├── value-converter.js │ │ └── value-converter.json │ └── tasks │ │ ├── build.js │ │ ├── build.json │ │ ├── copy-files.js │ │ ├── copy-fonts.js │ │ ├── process-css.js │ │ ├── process-markup.js │ │ ├── run.js │ │ ├── run.json │ │ ├── styles.css │ │ ├── test.js │ │ ├── test.json │ │ └── transpile.js │ ├── books.json │ ├── favicon.ico │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 │ ├── index.html │ ├── jsconfig.json │ ├── karma.conf.js │ ├── package.json │ ├── src │ ├── app.html │ ├── app.js │ ├── environment.js │ ├── index.html │ ├── index.js │ ├── main.js │ ├── resources │ │ ├── attributes │ │ │ └── tooltip.js │ │ ├── elements │ │ │ ├── book-list.html │ │ │ ├── book-list.js │ │ │ ├── book-stats.html │ │ │ ├── book-stats.js │ │ │ ├── books.html │ │ │ ├── books.js │ │ │ └── heading.html │ │ ├── index.js │ │ └── value-converters │ │ │ ├── book-status.js │ │ │ ├── filter.js │ │ │ ├── highlight.js │ │ │ └── search-bold.js │ ├── services │ │ └── book-api.js │ └── styles.css │ └── test │ ├── aurelia-karma.js │ └── unit │ ├── app.spec.js │ └── setup.js ├── Chapter-5 ├── Listing_5.10_books.html ├── Listing_5.11_books.html ├── Listing_5.12_books.js ├── Listing_5.1_book-status.js ├── Listing_5.2_book-list.html ├── Listing_5.3_filter.js ├── Listing_5.4_search-bold.js ├── Listing_5.5_book-list.html ├── Listing_5.6_highlight.js ├── Listing_5.7_book-list.html ├── Listing_5.8._books.html └── Listing_5.9_books.html ├── Chapter-6-Complete └── my-books │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitignore │ ├── aurelia_project │ ├── aurelia.json │ ├── environments │ │ ├── dev.js │ │ ├── prod.js │ │ └── stage.js │ ├── generators │ │ ├── attribute.js │ │ ├── attribute.json │ │ ├── binding-behavior.js │ │ ├── binding-behavior.json │ │ ├── element.js │ │ ├── element.json │ │ ├── generator.js │ │ ├── generator.json │ │ ├── task.js │ │ ├── task.json │ │ ├── value-converter.js │ │ └── value-converter.json │ └── tasks │ │ ├── build.js │ │ ├── build.json │ │ ├── copy-files.js │ │ ├── copy-fonts.js │ │ ├── process-css.js │ │ ├── process-markup.js │ │ ├── run.js │ │ ├── run.json │ │ ├── styles.css │ │ ├── test.js │ │ ├── test.json │ │ └── transpile.js │ ├── books.json │ ├── favicon.ico │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 │ ├── index.html │ ├── jsconfig.json │ ├── karma.conf.js │ ├── package.json │ ├── src │ ├── app.html │ ├── app.js │ ├── environment.js │ ├── index.html │ ├── index.js │ ├── main.js │ ├── resources │ │ ├── attributes │ │ │ └── tooltip.js │ │ ├── elements │ │ │ ├── book-list.html │ │ │ ├── book-list.js │ │ │ ├── book-stats.html │ │ │ ├── book-stats.js │ │ │ ├── book.html │ │ │ ├── book.js │ │ │ ├── books.html │ │ │ ├── books.js │ │ │ ├── edit-book.html │ │ │ ├── edit-book.js │ │ │ ├── heading.html │ │ │ ├── star-rating.html │ │ │ └── star-rating.js │ │ ├── index.js │ │ └── value-converters │ │ │ ├── book-status.js │ │ │ ├── date-format.js │ │ │ ├── filter.js │ │ │ ├── highlight.js │ │ │ └── search-bold.js │ ├── services │ │ └── book-api.js │ └── styles.css │ └── test │ ├── aurelia-karma.js │ └── unit │ ├── app.spec.js │ └── setup.js ├── Chapter-6 ├── Listing_6.10_books.js ├── Listing_6.11_star-rating.js ├── Listing_6.12_star-rating.html ├── Listing_6.13_edit-book.js ├── Listing_6.14.edit-book.html ├── Listing_6.1_book-list.js ├── Listing_6.2_books.js ├── Listing_6.3_date-format.js ├── Listing_6.4.book-api.js ├── Listing_6.5_book.js ├── Listing_6.6_book.html ├── Listing_6.7_edit-book.js ├── Listing_6.8_edit-book.html └── Listing_6.9_book-list.html ├── Chapter-7-Complete └── my-books │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitignore │ ├── aurelia_project │ ├── aurelia.json │ ├── environments │ │ ├── dev.js │ │ ├── prod.js │ │ └── stage.js │ ├── generators │ │ ├── attribute.js │ │ ├── attribute.json │ │ ├── binding-behavior.js │ │ ├── binding-behavior.json │ │ ├── element.js │ │ ├── element.json │ │ ├── generator.js │ │ ├── generator.json │ │ ├── task.js │ │ ├── task.json │ │ ├── value-converter.js │ │ └── value-converter.json │ └── tasks │ │ ├── build.js │ │ ├── build.json │ │ ├── copy-files.js │ │ ├── copy-fonts.js │ │ ├── process-css.js │ │ ├── process-markup.js │ │ ├── run.js │ │ ├── run.json │ │ ├── styles.css │ │ ├── test.js │ │ ├── test.json │ │ └── transpile.js │ ├── books.json │ ├── favicon.ico │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 │ ├── index.html │ ├── jsconfig.json │ ├── karma.conf.js │ ├── package.json │ ├── src │ ├── app.html │ ├── app.js │ ├── environment.js │ ├── index.html │ ├── index.js │ ├── main.js │ ├── renderers │ │ └── bootstrap-form-renderer.js │ ├── resources │ │ ├── attributes │ │ │ └── tooltip.js │ │ ├── elements │ │ │ ├── book-list.html │ │ │ ├── book-list.js │ │ │ ├── book-stats.html │ │ │ ├── book-stats.js │ │ │ ├── book.html │ │ │ ├── book.js │ │ │ ├── books.html │ │ │ ├── books.js │ │ │ ├── edit-book.html │ │ │ ├── edit-book.js │ │ │ ├── heading.html │ │ │ ├── loader.html │ │ │ ├── star-rating.html │ │ │ └── star-rating.js │ │ ├── index.js │ │ └── value-converters │ │ │ ├── book-status.js │ │ │ ├── date-format.js │ │ │ ├── filter.js │ │ │ ├── highlight.js │ │ │ └── search-bold.js │ ├── services │ │ └── book-api.js │ └── styles.css │ └── test │ ├── aurelia-karma.js │ └── unit │ ├── app.spec.js │ └── setup.js ├── Chapter-7 ├── LIsting_7.2_edit-book.html ├── Listing_7.10_edit.book.js ├── Listing_7.11_edit-book.html ├── Listing_7.12.edit-book.html ├── Listing_7.13_edit-book.js ├── Listing_7.14_edit.book.html ├── Listing_7.15_edit-book.js ├── Listing_7.16_edit-book.js ├── Listing_7.17_edit-book.html ├── Listing_7.1_edit-book.js ├── Listing_7.3_book-api.js ├── Listing_7.4_books.js ├── Listing_7.5_books.html ├── Listing_7.6_book-list.js ├── Listing_7.7_book-list.html ├── Listing_7.8_book.js └── Listing_7.9_book.html ├── Chapter-8-Complete └── my-books │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitignore │ ├── aurelia_project │ ├── aurelia.json │ ├── environments │ │ ├── dev.js │ │ ├── prod.js │ │ └── stage.js │ ├── generators │ │ ├── attribute.js │ │ ├── attribute.json │ │ ├── binding-behavior.js │ │ ├── binding-behavior.json │ │ ├── element.js │ │ ├── element.json │ │ ├── generator.js │ │ ├── generator.json │ │ ├── task.js │ │ ├── task.json │ │ ├── value-converter.js │ │ └── value-converter.json │ └── tasks │ │ ├── build.js │ │ ├── build.json │ │ ├── copy-files.js │ │ ├── copy-fonts.js │ │ ├── process-css.js │ │ ├── process-markup.js │ │ ├── run.js │ │ ├── run.json │ │ ├── styles.css │ │ ├── test.js │ │ ├── test.json │ │ └── transpile.js │ ├── books.json │ ├── favicon.ico │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 │ ├── index.html │ ├── jsconfig.json │ ├── karma.conf.js │ ├── package.json │ ├── src │ ├── app.html │ ├── app.js │ ├── environment.js │ ├── index.html │ ├── index.js │ ├── main.js │ ├── renderers │ │ └── bootstrap-form-renderer.js │ ├── resources │ │ ├── attributes │ │ │ └── tooltip.js │ │ ├── elements │ │ │ ├── book-list.html │ │ │ ├── book-list.js │ │ │ ├── book-stats.html │ │ │ ├── book-stats.js │ │ │ ├── book.html │ │ │ ├── book.js │ │ │ ├── books.html │ │ │ ├── books.js │ │ │ ├── edit-book.html │ │ │ ├── edit-book.js │ │ │ ├── heading.html │ │ │ ├── loader.html │ │ │ ├── star-rating.html │ │ │ └── star-rating.js │ │ ├── index.js │ │ └── value-converters │ │ │ ├── book-status.js │ │ │ ├── date-format.js │ │ │ ├── filter.js │ │ │ ├── highlight.js │ │ │ └── search-bold.js │ ├── services │ │ ├── book-api-jsonp.js │ │ └── book-api.js │ └── styles.css │ └── test │ ├── aurelia-karma.js │ └── unit │ ├── app.spec.js │ └── setup.js ├── Chapter-8 ├── Listing_8.1_book-api.js ├── Listing_8.2_edit-book.js ├── Listing_8.3_edit-book.html ├── Listing_8.4_books.js ├── Listing_8.5_book-api.js ├── Listing_8.6_book-api.js ├── Listing_8.7_book-api-jsonp.js └── Listing_8.8_books.js ├── Chapter-9-Complete └── my-books │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitignore │ ├── aurelia_project │ ├── aurelia.json │ ├── environments │ │ ├── dev.js │ │ ├── prod.js │ │ └── stage.js │ ├── generators │ │ ├── attribute.js │ │ ├── attribute.json │ │ ├── binding-behavior.js │ │ ├── binding-behavior.json │ │ ├── element.js │ │ ├── element.json │ │ ├── generator.js │ │ ├── generator.json │ │ ├── task.js │ │ ├── task.json │ │ ├── value-converter.js │ │ └── value-converter.json │ └── tasks │ │ ├── build.js │ │ ├── build.json │ │ ├── copy-files.js │ │ ├── copy-fonts.js │ │ ├── process-css.js │ │ ├── process-markup.js │ │ ├── run.js │ │ ├── run.json │ │ ├── styles.css │ │ ├── test.js │ │ ├── test.json │ │ └── transpile.js │ ├── books.json │ ├── favicon.ico │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 │ ├── images │ └── background.jpeg │ ├── index.html │ ├── jsconfig.json │ ├── karma.conf.js │ ├── package.json │ ├── src │ ├── app.html │ ├── app.js │ ├── environment.js │ ├── index.html │ ├── index.js │ ├── login-layout.html │ ├── login-styles.css │ ├── main-layout.html │ ├── main-layout.js │ ├── main.js │ ├── renderers │ │ └── bootstrap-form-renderer.js │ ├── resources │ │ ├── attributes │ │ │ └── tooltip.js │ │ ├── elements │ │ │ ├── admin-unknown-route.html │ │ │ ├── book-list.html │ │ │ ├── book-list.js │ │ │ ├── book-stats.html │ │ │ ├── book-stats.js │ │ │ ├── book.html │ │ │ ├── book.js │ │ │ ├── books.html │ │ │ ├── books.js │ │ │ ├── edit-book.html │ │ │ ├── edit-book.js │ │ │ ├── heading.html │ │ │ ├── loader.html │ │ │ ├── login.html │ │ │ ├── login.js │ │ │ ├── main-page-layout.html │ │ │ ├── nav-bar.html │ │ │ ├── star-rating.html │ │ │ ├── star-rating.js │ │ │ ├── user-details.html │ │ │ ├── user-details.js │ │ │ ├── users.html │ │ │ ├── users.js │ │ │ └── what-happened.html │ │ ├── index.js │ │ └── value-converters │ │ │ ├── book-status.js │ │ │ └── date-format.js │ ├── services │ │ ├── book-api-jsonp.js │ │ ├── book-api.js │ │ └── user-api.js │ └── styles.css │ └── test │ ├── aurelia-karma.js │ └── unit │ ├── app.spec.js │ └── setup.js ├── Chapter-9 ├── Listing_9.10_app.js ├── Listing_9.11_app.js ├── Listing_9.12_app.js ├── Listing_9.13_what-happened.html ├── Listing_9.14_app.js ├── Listing_9.15_unknown-route-admin.html ├── Listing_9.16_app.js ├── Listing_9.17_app.js ├── Listing_9.18_app.html ├── Listing_9.19_login-layout.html ├── Listing_9.1_app.js ├── Listing_9.20_main-layout.js ├── Listing_9.21_main-layout.html ├── Listing_9.22_app.html ├── Listing_9.23_login.js ├── Listing_9.24_login.html ├── Listing_9.25_login-styles.css ├── Listing_9.26_app.js ├── Listing_9.2_app.js ├── Listing_9.3_nav-bar.html ├── Listing_9.4_app.html ├── Listing_9.5_user-api.js ├── Listing_9.6_users.js ├── Listing_9.7_users.html ├── Listing_9.8_user-details.js └── Listing_9.9_user-details.html └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/.gitignore -------------------------------------------------------------------------------- /Appendix A/Listing_A.10_main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Appendix A/Listing_A.10_main.js -------------------------------------------------------------------------------- /Appendix A/Listing_A.11_protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Appendix A/Listing_A.11_protractor.conf.js -------------------------------------------------------------------------------- /Appendix A/Listing_A.12_aurelia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Appendix A/Listing_A.12_aurelia.json -------------------------------------------------------------------------------- /Appendix A/Listing_A.13_e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Appendix A/Listing_A.13_e2e.js -------------------------------------------------------------------------------- /Appendix A/Listing_A.1_aurelia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Appendix A/Listing_A.1_aurelia.json -------------------------------------------------------------------------------- /Appendix A/Listing_A.2_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Appendix A/Listing_A.2_app.js -------------------------------------------------------------------------------- /Appendix A/Listing_A.3_aurelia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Appendix A/Listing_A.3_aurelia.json -------------------------------------------------------------------------------- /Appendix A/Listing_A.4_copy-fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Appendix A/Listing_A.4_copy-fonts.js -------------------------------------------------------------------------------- /Appendix A/Listing_A.5_aurelia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Appendix A/Listing_A.5_aurelia.json -------------------------------------------------------------------------------- /Appendix A/Listing_A.6.build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Appendix A/Listing_A.6.build.js -------------------------------------------------------------------------------- /Appendix A/Listing_A.7_main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Appendix A/Listing_A.7_main.js -------------------------------------------------------------------------------- /Appendix A/Listing_A.8_main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Appendix A/Listing_A.8_main.js -------------------------------------------------------------------------------- /Appendix A/Listing_A.9_aurelia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Appendix A/Listing_A.9_aurelia.json -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/.babelrc -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/.editorconfig -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./node_modules/aurelia-tools/.eslintrc.json" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | .DS_STORE 4 | -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/aurelia_project/aurelia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/aurelia_project/aurelia.json -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/aurelia_project/tasks/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/aurelia_project/tasks/build.js -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/aurelia_project/tasks/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/aurelia_project/tasks/run.js -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/aurelia_project/tasks/run.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/aurelia_project/tasks/run.json -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/aurelia_project/tasks/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/aurelia_project/tasks/test.js -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/aurelia_project/tasks/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/aurelia_project/tasks/test.json -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/books.json -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/favicon.ico -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/images/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/images/background.jpeg -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/index.html -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/jsconfig.json -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/karma.conf.js -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/package.json -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/src/app.html -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/src/app.js -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/src/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/src/environment.js -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/src/index.html -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/src/index.js: -------------------------------------------------------------------------------- 1 | export class Index{ 2 | } -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/src/login-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/src/login-layout.html -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/src/login-styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/src/main-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/src/main-layout.html -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/src/main-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/src/main-layout.js -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/src/main.js -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/src/resources/elements/book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/src/resources/elements/book.js -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/src/resources/elements/books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/src/resources/elements/books.js -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/src/resources/elements/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/src/resources/elements/login.js -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/src/resources/elements/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/src/resources/elements/users.js -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/src/resources/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/src/resources/index.js -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/src/services/auth-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/src/services/auth-service.js -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/src/services/book-api-jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/src/services/book-api-jsonp.js -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/src/services/book-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/src/services/book-api.js -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/src/services/user-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/src/services/user-api.js -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/src/styles.css -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/test/aurelia-karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/test/aurelia-karma.js -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/test/unit/app.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/test/unit/app.spec.js -------------------------------------------------------------------------------- /Chapter-10-Complete/my-books/test/unit/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10-Complete/my-books/test/unit/setup.js -------------------------------------------------------------------------------- /Chapter-10/Listing_10.10_nav-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10/Listing_10.10_nav-bar.js -------------------------------------------------------------------------------- /Chapter-10/Listing_10.11_nav-bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10/Listing_10.11_nav-bar.html -------------------------------------------------------------------------------- /Chapter-10/Listing_10.12_main-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10/Listing_10.12_main-layout.html -------------------------------------------------------------------------------- /Chapter-10/Listing_10.1_auth-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10/Listing_10.1_auth-service.js -------------------------------------------------------------------------------- /Chapter-10/Listing_10.2_login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10/Listing_10.2_login.js -------------------------------------------------------------------------------- /Chapter-10/Listing_10.3_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10/Listing_10.3_login.html -------------------------------------------------------------------------------- /Chapter-10/Listing_10.4_auth-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10/Listing_10.4_auth-service.js -------------------------------------------------------------------------------- /Chapter-10/Listing_10.5_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10/Listing_10.5_app.js -------------------------------------------------------------------------------- /Chapter-10/Listing_10.6_authorization-step.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10/Listing_10.6_authorization-step.js -------------------------------------------------------------------------------- /Chapter-10/Listing_10.7_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10/Listing_10.7_app.js -------------------------------------------------------------------------------- /Chapter-10/Listing_10.8_auth-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10/Listing_10.8_auth-service.js -------------------------------------------------------------------------------- /Chapter-10/Listing_10.9_auth-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-10/Listing_10.9_auth-filter.js -------------------------------------------------------------------------------- /Chapter-11/LIsting_11.1_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-11/LIsting_11.1_app.html -------------------------------------------------------------------------------- /Chapter-11/Listing_11.10_au-text-area.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-11/Listing_11.10_au-text-area.html -------------------------------------------------------------------------------- /Chapter-11/Listing_11.11_au-checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-11/Listing_11.11_au-checkbox.js -------------------------------------------------------------------------------- /Chapter-11/Listing_11.12_au-checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-11/Listing_11.12_au-checkbox.html -------------------------------------------------------------------------------- /Chapter-11/Listing_11.13_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-11/Listing_11.13_app.html -------------------------------------------------------------------------------- /Chapter-11/Listing_11.2_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-11/Listing_11.2_app.js -------------------------------------------------------------------------------- /Chapter-11/Listing_11.3_info-card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-11/Listing_11.3_info-card.html -------------------------------------------------------------------------------- /Chapter-11/Listing_11.4_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-11/Listing_11.4_app.html -------------------------------------------------------------------------------- /Chapter-11/Listing_11.5_au-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-11/Listing_11.5_au-form.js -------------------------------------------------------------------------------- /Chapter-11/Listing_11.6_au-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-11/Listing_11.6_au-form.html -------------------------------------------------------------------------------- /Chapter-11/Listing_11.7_au-textbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-11/Listing_11.7_au-textbox.js -------------------------------------------------------------------------------- /Chapter-11/Listing_11.8_au-textbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-11/Listing_11.8_au-textbox.html -------------------------------------------------------------------------------- /Chapter-11/Listing_11.9_au-text-area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-11/Listing_11.9_au-text-area.js -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/.babelrc -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/.editorconfig -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./node_modules/aurelia-tools/.eslintrc.json" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | .DS_STORE 4 | -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/aurelia_project/aurelia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/aurelia_project/aurelia.json -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/aurelia_project/tasks/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/aurelia_project/tasks/build.js -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/aurelia_project/tasks/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/aurelia_project/tasks/run.js -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/aurelia_project/tasks/run.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/aurelia_project/tasks/run.json -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/aurelia_project/tasks/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/aurelia_project/tasks/test.js -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/aurelia_project/tasks/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/aurelia_project/tasks/test.json -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/books.json -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/favicon.ico -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/images/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/images/background.jpeg -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/index.html -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/jsconfig.json -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/karma.conf.js -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/package.json -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/src/app.html -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/src/app.js -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/src/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/src/environment.js -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/src/index.html -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/src/index.js: -------------------------------------------------------------------------------- 1 | export class Index{ 2 | } -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/src/login-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/src/login-layout.html -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/src/login-styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/src/main-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/src/main-layout.html -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/src/main-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/src/main-layout.js -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/src/main.js -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/src/resources/elements/book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/src/resources/elements/book.js -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/src/resources/elements/books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/src/resources/elements/books.js -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/src/resources/elements/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/src/resources/elements/login.js -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/src/resources/elements/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/src/resources/elements/users.js -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/src/resources/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/src/resources/index.js -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/src/services/auth-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/src/services/auth-service.js -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/src/services/book-api-jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/src/services/book-api-jsonp.js -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/src/services/book-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/src/services/book-api.js -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/src/services/user-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/src/services/user-api.js -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/src/styles.css -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/test/aurelia-karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/test/aurelia-karma.js -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/test/unit/app.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/test/unit/app.spec.js -------------------------------------------------------------------------------- /Chapter-12-Complete/my-books/test/unit/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12-Complete/my-books/test/unit/setup.js -------------------------------------------------------------------------------- /Chapter-12/Listing_12.10_info-card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12/Listing_12.10_info-card.html -------------------------------------------------------------------------------- /Chapter-12/Listing_12.11_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12/Listing_12.11_app.html -------------------------------------------------------------------------------- /Chapter-12/Listing_12.12_book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12/Listing_12.12_book.html -------------------------------------------------------------------------------- /Chapter-12/Listing_12.13_book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12/Listing_12.13_book.js -------------------------------------------------------------------------------- /Chapter-12/Listing_12.14_share-book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12/Listing_12.14_share-book.js -------------------------------------------------------------------------------- /Chapter-12/Listing_12.15_share-book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12/Listing_12.15_share-book.html -------------------------------------------------------------------------------- /Chapter-12/Listing_12.16_ux-card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12/Listing_12.16_ux-card.html -------------------------------------------------------------------------------- /Chapter-12/Listing_12.17_ux-text-area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12/Listing_12.17_ux-text-area.js -------------------------------------------------------------------------------- /Chapter-12/Listing_12.18_ux-text-area.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12/Listing_12.18_ux-text-area.html -------------------------------------------------------------------------------- /Chapter-12/Listing_12.19_ux-thumbnail-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12/Listing_12.19_ux-thumbnail-image.js -------------------------------------------------------------------------------- /Chapter-12/Listing_12.1_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12/Listing_12.1_index.html -------------------------------------------------------------------------------- /Chapter-12/Listing_12.20_ux-thumbnail-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12/Listing_12.20_ux-thumbnail-image.html -------------------------------------------------------------------------------- /Chapter-12/Listing_12.21_share-book-card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12/Listing_12.21_share-book-card.html -------------------------------------------------------------------------------- /Chapter-12/Listing_12.22-ux-font-block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12/Listing_12.22-ux-font-block.html -------------------------------------------------------------------------------- /Chapter-12/Listing_12.23_share-book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12/Listing_12.23_share-book.html -------------------------------------------------------------------------------- /Chapter-12/Listing_12.2_main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12/Listing_12.2_main.js -------------------------------------------------------------------------------- /Chapter-12/Listing_12.3_greetings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12/Listing_12.3_greetings.html -------------------------------------------------------------------------------- /Chapter-12/Listing_12.4_info-card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12/Listing_12.4_info-card.html -------------------------------------------------------------------------------- /Chapter-12/Listing_12.5_info-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12/Listing_12.5_info-card.js -------------------------------------------------------------------------------- /Chapter-12/Listing_12.6_info-card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12/Listing_12.6_info-card.html -------------------------------------------------------------------------------- /Chapter-12/Listing_12.7_x-info-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12/Listing_12.7_x-info-card.js -------------------------------------------------------------------------------- /Chapter-12/Listing_12.8_scoped-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12/Listing_12.8_scoped-css.html -------------------------------------------------------------------------------- /Chapter-12/Listing_12.9_info-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-12/Listing_12.9_info-card.js -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/.babelrc -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/.editorconfig -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./node_modules/aurelia-tools/.eslintrc.json" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | .DS_STORE 4 | -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/aurelia_project/aurelia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/aurelia_project/aurelia.json -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/aurelia_project/tasks/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/aurelia_project/tasks/build.js -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/aurelia_project/tasks/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/aurelia_project/tasks/run.js -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/aurelia_project/tasks/run.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/aurelia_project/tasks/run.json -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/aurelia_project/tasks/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/aurelia_project/tasks/test.js -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/aurelia_project/tasks/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/aurelia_project/tasks/test.json -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/books.json -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/favicon.ico -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/images/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/images/background.jpeg -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/index.html -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/jsconfig.json -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/karma.conf.js -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/package.json -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/src/app.html -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/src/app.js -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/src/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/src/environment.js -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/src/index.html -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/src/index.js: -------------------------------------------------------------------------------- 1 | export class Index{ 2 | } -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/src/login-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/src/login-layout.html -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/src/login-styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/src/main-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/src/main-layout.html -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/src/main-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/src/main-layout.js -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/src/main.js -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/src/resources/elements/book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/src/resources/elements/book.js -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/src/resources/elements/books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/src/resources/elements/books.js -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/src/resources/elements/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/src/resources/elements/login.js -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/src/resources/elements/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/src/resources/elements/users.js -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/src/resources/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/src/resources/index.js -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/src/services/auth-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/src/services/auth-service.js -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/src/services/book-api-jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/src/services/book-api-jsonp.js -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/src/services/book-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/src/services/book-api.js -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/src/services/user-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/src/services/user-api.js -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/src/styles.css -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/test/aurelia-karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/test/aurelia-karma.js -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/test/unit/app.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/test/unit/app.spec.js -------------------------------------------------------------------------------- /Chapter-13-Complete/my-books/test/unit/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13-Complete/my-books/test/unit/setup.js -------------------------------------------------------------------------------- /Chapter-13/Listing_13.10_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13/Listing_13.10_app.html -------------------------------------------------------------------------------- /Chapter-13/Listing_13.11_red.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13/Listing_13.11_red.js -------------------------------------------------------------------------------- /Chapter-13/Listing_13.12_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13/Listing_13.12_app.html -------------------------------------------------------------------------------- /Chapter-13/Listing_13.13_inspect-binding-behavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13/Listing_13.13_inspect-binding-behavior.js -------------------------------------------------------------------------------- /Chapter-13/Listing_13.14_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13/Listing_13.14_app.html -------------------------------------------------------------------------------- /Chapter-13/Listing_13.15_au-selectize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13/Listing_13.15_au-selectize.js -------------------------------------------------------------------------------- /Chapter-13/Listing_13.16_user-details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13/Listing_13.16_user-details.html -------------------------------------------------------------------------------- /Chapter-13/Listing_13.17_user-details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13/Listing_13.17_user-details.js -------------------------------------------------------------------------------- /Chapter-13/Listing_13.1_bootstrap-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13/Listing_13.1_bootstrap-select.js -------------------------------------------------------------------------------- /Chapter-13/Listing_13.2_my-select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13/Listing_13.2_my-select.html -------------------------------------------------------------------------------- /Chapter-13/Listing_13.3_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13/Listing_13.3_app.html -------------------------------------------------------------------------------- /Chapter-13/Listing_13.4_alerter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13/Listing_13.4_alerter.js -------------------------------------------------------------------------------- /Chapter-13/Listing_13.5_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13/Listing_13.5_app.html -------------------------------------------------------------------------------- /Chapter-13/Listing_13.6_alerter-inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13/Listing_13.6_alerter-inline.js -------------------------------------------------------------------------------- /Chapter-13/Listing_13.7_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13/Listing_13.7_app.html -------------------------------------------------------------------------------- /Chapter-13/Listing_13.8_bootstrap-select-custom-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13/Listing_13.8_bootstrap-select-custom-element.js -------------------------------------------------------------------------------- /Chapter-13/Listing_13.9_bootstrap-select-custom-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-13/Listing_13.9_bootstrap-select-custom-element.html -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/.babelrc -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/.editorconfig -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./node_modules/aurelia-tools/.eslintrc.json" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | .DS_STORE 4 | -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/aurelia_project/aurelia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/aurelia_project/aurelia.json -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/aurelia_project/tasks/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/aurelia_project/tasks/build.js -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/aurelia_project/tasks/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/aurelia_project/tasks/run.js -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/aurelia_project/tasks/run.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/aurelia_project/tasks/run.json -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/aurelia_project/tasks/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/aurelia_project/tasks/test.js -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/aurelia_project/tasks/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/aurelia_project/tasks/test.json -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/books.json -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/favicon.ico -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/images/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/images/background.jpeg -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/index.html -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/jsconfig.json -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/karma.conf.js -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/package.json -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/src/app.html -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/src/app.js -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/src/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/src/environment.js -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/src/index.html -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/src/index.js -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/src/login-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/src/login-layout.html -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/src/login-styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/src/main-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/src/main-layout.html -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/src/main-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/src/main-layout.js -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/src/main.js -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/src/resources/elements/book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/src/resources/elements/book.js -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/src/resources/elements/books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/src/resources/elements/books.js -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/src/resources/elements/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/src/resources/elements/login.js -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/src/resources/elements/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/src/resources/elements/users.js -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/src/resources/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/src/resources/index.js -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/src/services/auth-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/src/services/auth-service.js -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/src/services/book-api-jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/src/services/book-api-jsonp.js -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/src/services/book-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/src/services/book-api.js -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/src/services/user-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/src/services/user-api.js -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/src/styles.css -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/test/aurelia-karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/test/aurelia-karma.js -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/test/unit/app.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/test/unit/app.spec.js -------------------------------------------------------------------------------- /Chapter-14-Complete/my-books/test/unit/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14-Complete/my-books/test/unit/setup.js -------------------------------------------------------------------------------- /Chapter-14/Listing_14.1_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14/Listing_14.1_styles.css -------------------------------------------------------------------------------- /Chapter-14/Listing_14.2_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14/Listing_14.2_index.html -------------------------------------------------------------------------------- /Chapter-14/Listing_14.3_book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14/Listing_14.3_book.html -------------------------------------------------------------------------------- /Chapter-14/Listing_14.4_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14/Listing_14.4_styles.css -------------------------------------------------------------------------------- /Chapter-14/Listing_14.5_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14/Listing_14.5_index.html -------------------------------------------------------------------------------- /Chapter-14/Listing_14.6_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14/Listing_14.6_index.js -------------------------------------------------------------------------------- /Chapter-14/Listing_14.7_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-14/Listing_14.7_styles.css -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/.babelrc -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/.editorconfig -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./node_modules/aurelia-tools/.eslintrc.json" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | .DS_STORE 4 | -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/aurelia_project/aurelia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/aurelia_project/aurelia.json -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/aurelia_project/tasks/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/aurelia_project/tasks/build.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/aurelia_project/tasks/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/aurelia_project/tasks/e2e.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/aurelia_project/tasks/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/aurelia_project/tasks/run.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/aurelia_project/tasks/run.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/aurelia_project/tasks/run.json -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/aurelia_project/tasks/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/aurelia_project/tasks/test.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/aurelia_project/tasks/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/aurelia_project/tasks/test.json -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/books.json -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/favicon.ico -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/images/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/images/background.jpeg -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/index.html -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/jsconfig.json -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/karma.conf.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/package.json -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/protractor.conf.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/src/app.html -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/src/app.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/src/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/src/environment.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/src/index.html -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/src/index.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/src/login-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/src/login-layout.html -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/src/login-styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/src/main-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/src/main-layout.html -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/src/main-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/src/main-layout.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/src/main.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/src/resources/elements/book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/src/resources/elements/book.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/src/resources/elements/books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/src/resources/elements/books.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/src/resources/elements/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/src/resources/elements/hello.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/src/resources/elements/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/src/resources/elements/login.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/src/resources/elements/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/src/resources/elements/users.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/src/resources/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/src/resources/index.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/src/services/auth-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/src/services/auth-service.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/src/services/book-api-jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/src/services/book-api-jsonp.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/src/services/book-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/src/services/book-api.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/src/services/user-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/src/services/user-api.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/src/styles.css -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/test/aurelia-karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/test/aurelia-karma.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/test/e2e/dist/app.po.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/test/e2e/dist/app.po.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/test/e2e/dist/app.po.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/test/e2e/dist/app.po.js.map -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/test/e2e/dist/login.po.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/test/e2e/dist/login.po.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/test/e2e/dist/login.po.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/test/e2e/dist/login.po.js.map -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/test/e2e/dist/login.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/test/e2e/dist/login.spec.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/test/e2e/dist/login.spec.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/test/e2e/dist/login.spec.js.map -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/test/e2e/src/app.po.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/test/e2e/src/app.po.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/test/e2e/src/login.po.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/test/e2e/src/login.po.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/test/e2e/src/login.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/test/e2e/src/login.spec.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/test/unit/filter.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/test/unit/filter.spec.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/test/unit/greeter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/test/unit/greeter.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/test/unit/greeter.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/test/unit/greeter.spec.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/test/unit/hello.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/test/unit/hello.spec.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/test/unit/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/test/unit/setup.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/test/unit/test-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/test/unit/test-data.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/test/unit/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/test/unit/test-helper.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/test/unit/tooltip.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/test/unit/tooltip.spec.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/test/unit/user-api.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/test/unit/user-api.spec.js -------------------------------------------------------------------------------- /Chapter-15-Complete/my-books/test/unit/ux-text-area.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15-Complete/my-books/test/unit/ux-text-area.spec.js -------------------------------------------------------------------------------- /Chapter-15/Listing_15.10_ux-text-area.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15/Listing_15.10_ux-text-area.spec.js -------------------------------------------------------------------------------- /Chapter-15/Listing_15.11_tooltip.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15/Listing_15.11_tooltip.spec.js -------------------------------------------------------------------------------- /Chapter-15/Listing_15.12_app.po.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15/Listing_15.12_app.po.js -------------------------------------------------------------------------------- /Chapter-15/Listing_15.13_login.po.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15/Listing_15.13_login.po.js -------------------------------------------------------------------------------- /Chapter-15/Listing_15.14_login.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15/Listing_15.14_login.spec.js -------------------------------------------------------------------------------- /Chapter-15/Listing_15.1_greeter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15/Listing_15.1_greeter.js -------------------------------------------------------------------------------- /Chapter-15/Listing_15.2_greeter-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15/Listing_15.2_greeter-spec.js -------------------------------------------------------------------------------- /Chapter-15/Listing_15.3_test-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15/Listing_15.3_test-data.js -------------------------------------------------------------------------------- /Chapter-15/Listing_15.4_filter.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15/Listing_15.4_filter.spec.js -------------------------------------------------------------------------------- /Chapter-15/Listing_15.5_test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15/Listing_15.5_test-helper.js -------------------------------------------------------------------------------- /Chapter-15/Listing_15.6_user-api.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15/Listing_15.6_user-api.spec.js -------------------------------------------------------------------------------- /Chapter-15/Listing_15.7_test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15/Listing_15.7_test-helper.js -------------------------------------------------------------------------------- /Chapter-15/Listing_15.8_ux-text-area.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15/Listing_15.8_ux-text-area.spec.js -------------------------------------------------------------------------------- /Chapter-15/Listing_15.9_ux-text-area.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-15/Listing_15.9_ux-text-area.spec.js -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/.babelrc -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/.editorconfig -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./node_modules/aurelia-tools/.eslintrc.json" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | .DS_STORE 4 | -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/aurelia_project/aurelia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/aurelia_project/aurelia.json -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/aurelia_project/tasks/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/aurelia_project/tasks/build.js -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/aurelia_project/tasks/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/aurelia_project/tasks/run.js -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/aurelia_project/tasks/run.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/aurelia_project/tasks/run.json -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/aurelia_project/tasks/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/aurelia_project/tasks/test.js -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/aurelia_project/tasks/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/aurelia_project/tasks/test.json -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/books.json -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/favicon.ico -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/index.html -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/jsconfig.json -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/karma.conf.js -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/package.json -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/src/app.html -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/src/app.js -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/src/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/src/environment.js -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/src/index.html -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/src/index.js: -------------------------------------------------------------------------------- 1 | export class Index{ 2 | } -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/src/main.js -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/src/resources/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/src/resources/index.js -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/src/styles.css -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/test/aurelia-karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/test/aurelia-karma.js -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/test/unit/app.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/test/unit/app.spec.js -------------------------------------------------------------------------------- /Chapter-16-Complete/my-books/test/unit/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16-Complete/my-books/test/unit/setup.js -------------------------------------------------------------------------------- /Chapter-16/Listing_16.1_aurelia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16/Listing_16.1_aurelia.json -------------------------------------------------------------------------------- /Chapter-16/Listing_16.2_aurelia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16/Listing_16.2_aurelia.json -------------------------------------------------------------------------------- /Chapter-16/Listing_16.3_aurelia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16/Listing_16.3_aurelia.json -------------------------------------------------------------------------------- /Chapter-16/Listing_16.4_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-16/Listing_16.4_package.json -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2-Complete/my-books/.babelrc -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2-Complete/my-books/.editorconfig -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./node_modules/aurelia-tools/.eslintrc.json" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | .DS_STORE 4 | -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/aurelia_project/aurelia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2-Complete/my-books/aurelia_project/aurelia.json -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/aurelia_project/tasks/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2-Complete/my-books/aurelia_project/tasks/run.js -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/aurelia_project/tasks/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2-Complete/my-books/aurelia_project/tasks/test.js -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2-Complete/my-books/books.json -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2-Complete/my-books/favicon.ico -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2-Complete/my-books/index.html -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2-Complete/my-books/jsconfig.json -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2-Complete/my-books/karma.conf.js -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2-Complete/my-books/package.json -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/scripts/app-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2-Complete/my-books/scripts/app-bundle.js -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/scripts/app-bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2-Complete/my-books/scripts/app-bundle.js.map -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/scripts/vendor-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2-Complete/my-books/scripts/vendor-bundle.js -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2-Complete/my-books/src/app.html -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2-Complete/my-books/src/app.js -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/src/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2-Complete/my-books/src/environment.js -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2-Complete/my-books/src/index.html -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/src/index.js: -------------------------------------------------------------------------------- 1 | export class Index{ 2 | } -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2-Complete/my-books/src/main.js -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/src/resources/elements/index.js: -------------------------------------------------------------------------------- 1 | export class Index{ 2 | } -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/src/resources/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2-Complete/my-books/src/resources/index.js -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/src/services/book-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2-Complete/my-books/src/services/book-api.js -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/test/aurelia-karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2-Complete/my-books/test/aurelia-karma.js -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/test/unit/app.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2-Complete/my-books/test/unit/app.spec.js -------------------------------------------------------------------------------- /Chapter-2-Complete/my-books/test/unit/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2-Complete/my-books/test/unit/setup.js -------------------------------------------------------------------------------- /Chapter-2/Listing_2.10_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2/Listing_2.10_app.js -------------------------------------------------------------------------------- /Chapter-2/Listing_2.11_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2/Listing_2.11_app.js -------------------------------------------------------------------------------- /Chapter-2/Listing_2.12_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2/Listing_2.12_app.html -------------------------------------------------------------------------------- /Chapter-2/Listing_2.13_index.js: -------------------------------------------------------------------------------- 1 | export class Index{ 2 | } -------------------------------------------------------------------------------- /Chapter-2/Listing_2.14_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2/Listing_2.14_index.html -------------------------------------------------------------------------------- /Chapter-2/Listing_2.15_books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2/Listing_2.15_books.js -------------------------------------------------------------------------------- /Chapter-2/Listing_2.16_books.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2/Listing_2.16_books.html -------------------------------------------------------------------------------- /Chapter-2/Listing_2.17_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2/Listing_2.17_app.js -------------------------------------------------------------------------------- /Chapter-2/Listing_2.18_books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2/Listing_2.18_books.js -------------------------------------------------------------------------------- /Chapter-2/Listing_2.1_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2/Listing_2.1_app.js -------------------------------------------------------------------------------- /Chapter-2/Listing_2.2_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2/Listing_2.2_app.html -------------------------------------------------------------------------------- /Chapter-2/Listing_2.3_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2/Listing_2.3_app.html -------------------------------------------------------------------------------- /Chapter-2/Listing_2.4_book-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2/Listing_2.4_book-list.js -------------------------------------------------------------------------------- /Chapter-2/Listing_2.5_book-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2/Listing_2.5_book-list.html -------------------------------------------------------------------------------- /Chapter-2/Listing_2.6_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2/Listing_2.6_app.html -------------------------------------------------------------------------------- /Chapter-2/Listing_2.7_books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2/Listing_2.7_books.json -------------------------------------------------------------------------------- /Chapter-2/Listing_2.8_aurelia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2/Listing_2.8_aurelia.json -------------------------------------------------------------------------------- /Chapter-2/Listing_2.9_book-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-2/Listing_2.9_book-api.js -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3-Complete/my-books/.babelrc -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3-Complete/my-books/.editorconfig -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./node_modules/aurelia-tools/.eslintrc.json" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | .DS_STORE 4 | -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/aurelia_project/aurelia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3-Complete/my-books/aurelia_project/aurelia.json -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/aurelia_project/tasks/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3-Complete/my-books/aurelia_project/tasks/run.js -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/aurelia_project/tasks/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3-Complete/my-books/aurelia_project/tasks/test.js -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3-Complete/my-books/books.json -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3-Complete/my-books/favicon.ico -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3-Complete/my-books/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3-Complete/my-books/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3-Complete/my-books/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3-Complete/my-books/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3-Complete/my-books/index.html -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3-Complete/my-books/jsconfig.json -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3-Complete/my-books/karma.conf.js -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3-Complete/my-books/package.json -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3-Complete/my-books/src/app.html -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3-Complete/my-books/src/app.js -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/src/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3-Complete/my-books/src/environment.js -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3-Complete/my-books/src/index.html -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/src/index.js: -------------------------------------------------------------------------------- 1 | export class Index{ 2 | } -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3-Complete/my-books/src/main.js -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/src/resources/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3-Complete/my-books/src/resources/index.js -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/src/services/book-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3-Complete/my-books/src/services/book-api.js -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3-Complete/my-books/src/styles.css -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/test/aurelia-karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3-Complete/my-books/test/aurelia-karma.js -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/test/unit/app.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3-Complete/my-books/test/unit/app.spec.js -------------------------------------------------------------------------------- /Chapter-3-Complete/my-books/test/unit/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3-Complete/my-books/test/unit/setup.js -------------------------------------------------------------------------------- /Chapter-3/Listing_3.10_books.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter-3/Listing_3.10_heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3/Listing_3.10_heading.html -------------------------------------------------------------------------------- /Chapter-3/Listing_3.11_books.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3/Listing_3.11_books.html -------------------------------------------------------------------------------- /Chapter-3/Listing_3.12_books.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3/Listing_3.12_books.html -------------------------------------------------------------------------------- /Chapter-3/Listing_3.13_heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3/Listing_3.13_heading.html -------------------------------------------------------------------------------- /Chapter-3/Listing_3.14_books.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3/Listing_3.14_books.html -------------------------------------------------------------------------------- /Chapter-3/Listing_3.15_tooltip..js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3/Listing_3.15_tooltip..js -------------------------------------------------------------------------------- /Chapter-3/Listing_3.16_book-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3/Listing_3.16_book-list.html -------------------------------------------------------------------------------- /Chapter-3/Listing_3.17_book-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3/Listing_3.17_book-list.js -------------------------------------------------------------------------------- /Chapter-3/Listing_3.18_tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3/Listing_3.18_tooltip.js -------------------------------------------------------------------------------- /Chapter-3/Listing_3.19_book-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3/Listing_3.19_book-list.html -------------------------------------------------------------------------------- /Chapter-3/Listing_3.1_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3/Listing_3.1_index.html -------------------------------------------------------------------------------- /Chapter-3/Listing_3.20_tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3/Listing_3.20_tooltip.js -------------------------------------------------------------------------------- /Chapter-3/Listing_3.21_book-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3/Listing_3.21_book-list.html -------------------------------------------------------------------------------- /Chapter-3/Listing_3.2_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3/Listing_3.2_app.html -------------------------------------------------------------------------------- /Chapter-3/Listing_3.3_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3/Listing_3.3_app.html -------------------------------------------------------------------------------- /Chapter-3/Listing_3.4_book-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3/Listing_3.4_book-list.html -------------------------------------------------------------------------------- /Chapter-3/Listing_3.5_books.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3/Listing_3.5_books.html -------------------------------------------------------------------------------- /Chapter-3/Listing_3.6.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3/Listing_3.6.index.html -------------------------------------------------------------------------------- /Chapter-3/Listing_3.7_books.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3/Listing_3.7_books.html -------------------------------------------------------------------------------- /Chapter-3/Listing_3.8_books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3/Listing_3.8_books.js -------------------------------------------------------------------------------- /Chapter-3/Listing_3.9_heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-3/Listing_3.9_heading.html -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/.babelrc -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/.editorconfig -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./node_modules/aurelia-tools/.eslintrc.json" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | .DS_STORE 4 | -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/aurelia_project/aurelia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/aurelia_project/aurelia.json -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/aurelia_project/tasks/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/aurelia_project/tasks/run.js -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/aurelia_project/tasks/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/aurelia_project/tasks/test.js -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/books.json -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/favicon.ico -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/index.html -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/jsconfig.json -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/karma.conf.js -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/package.json -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/scripts/app-bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/scripts/app-bundle.js.map -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/src/app.html -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/src/app.js -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/src/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/src/environment.js -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/src/index.html -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/src/index.js: -------------------------------------------------------------------------------- 1 | export class Index{ 2 | } -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/src/main.js -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/src/resources/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/src/resources/index.js -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/src/services/book-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/src/services/book-api.js -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/src/styles.css -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/test/aurelia-karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/test/aurelia-karma.js -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/test/unit/app.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/test/unit/app.spec.js -------------------------------------------------------------------------------- /Chapter-4-Complete/my-books/test/unit/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4-Complete/my-books/test/unit/setup.js -------------------------------------------------------------------------------- /Chapter-4/Listing_4.10_books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4/Listing_4.10_books.js -------------------------------------------------------------------------------- /Chapter-4/Listing_4.11_books.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4/Listing_4.11_books.html -------------------------------------------------------------------------------- /Chapter-4/Listing_4.12_books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4/Listing_4.12_books.js -------------------------------------------------------------------------------- /Chapter-4/Listing_4.13_books.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4/Listing_4.13_books.html -------------------------------------------------------------------------------- /Chapter-4/Listing_4.14_books.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4/Listing_4.14_books.html -------------------------------------------------------------------------------- /Chapter-4/Listing_4.15_book-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4/Listing_4.15_book-list.html -------------------------------------------------------------------------------- /Chapter-4/Listing_4.1_book-stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4/Listing_4.1_book-stats.js -------------------------------------------------------------------------------- /Chapter-4/Listing_4.2_book-stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4/Listing_4.2_book-stats.html -------------------------------------------------------------------------------- /Chapter-4/Listing_4.3_books.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4/Listing_4.3_books.html -------------------------------------------------------------------------------- /Chapter-4/Listing_4.4_book-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4/Listing_4.4_book-list.html -------------------------------------------------------------------------------- /Chapter-4/Listing_4.5_books.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4/Listing_4.5_books.html -------------------------------------------------------------------------------- /Chapter-4/Listing_4.6_book-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4/Listing_4.6_book-list.html -------------------------------------------------------------------------------- /Chapter-4/Listing_4.7_book-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4/Listing_4.7_book-list.js -------------------------------------------------------------------------------- /Chapter-4/Listing_4.8_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4/Listing_4.8_app.html -------------------------------------------------------------------------------- /Chapter-4/Listing_4.9_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-4/Listing_4.9_app.js -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5-Complete/my-books/.babelrc -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5-Complete/my-books/.editorconfig -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./node_modules/aurelia-tools/.eslintrc.json" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | .DS_STORE 4 | -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/aurelia_project/aurelia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5-Complete/my-books/aurelia_project/aurelia.json -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/aurelia_project/tasks/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5-Complete/my-books/aurelia_project/tasks/run.js -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/aurelia_project/tasks/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5-Complete/my-books/aurelia_project/tasks/test.js -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5-Complete/my-books/books.json -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5-Complete/my-books/favicon.ico -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5-Complete/my-books/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5-Complete/my-books/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5-Complete/my-books/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5-Complete/my-books/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5-Complete/my-books/index.html -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5-Complete/my-books/jsconfig.json -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5-Complete/my-books/karma.conf.js -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5-Complete/my-books/package.json -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5-Complete/my-books/src/app.html -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5-Complete/my-books/src/app.js -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/src/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5-Complete/my-books/src/environment.js -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5-Complete/my-books/src/index.html -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/src/index.js: -------------------------------------------------------------------------------- 1 | export class Index{ 2 | } -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5-Complete/my-books/src/main.js -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/src/resources/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5-Complete/my-books/src/resources/index.js -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/src/services/book-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5-Complete/my-books/src/services/book-api.js -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5-Complete/my-books/src/styles.css -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/test/aurelia-karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5-Complete/my-books/test/aurelia-karma.js -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/test/unit/app.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5-Complete/my-books/test/unit/app.spec.js -------------------------------------------------------------------------------- /Chapter-5-Complete/my-books/test/unit/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5-Complete/my-books/test/unit/setup.js -------------------------------------------------------------------------------- /Chapter-5/Listing_5.10_books.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5/Listing_5.10_books.html -------------------------------------------------------------------------------- /Chapter-5/Listing_5.11_books.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5/Listing_5.11_books.html -------------------------------------------------------------------------------- /Chapter-5/Listing_5.12_books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5/Listing_5.12_books.js -------------------------------------------------------------------------------- /Chapter-5/Listing_5.1_book-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5/Listing_5.1_book-status.js -------------------------------------------------------------------------------- /Chapter-5/Listing_5.2_book-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5/Listing_5.2_book-list.html -------------------------------------------------------------------------------- /Chapter-5/Listing_5.3_filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5/Listing_5.3_filter.js -------------------------------------------------------------------------------- /Chapter-5/Listing_5.4_search-bold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5/Listing_5.4_search-bold.js -------------------------------------------------------------------------------- /Chapter-5/Listing_5.5_book-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5/Listing_5.5_book-list.html -------------------------------------------------------------------------------- /Chapter-5/Listing_5.6_highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5/Listing_5.6_highlight.js -------------------------------------------------------------------------------- /Chapter-5/Listing_5.7_book-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5/Listing_5.7_book-list.html -------------------------------------------------------------------------------- /Chapter-5/Listing_5.8._books.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5/Listing_5.8._books.html -------------------------------------------------------------------------------- /Chapter-5/Listing_5.9_books.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-5/Listing_5.9_books.html -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6-Complete/my-books/.babelrc -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6-Complete/my-books/.editorconfig -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./node_modules/aurelia-tools/.eslintrc.json" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | .DS_STORE 4 | -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/aurelia_project/aurelia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6-Complete/my-books/aurelia_project/aurelia.json -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/aurelia_project/tasks/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6-Complete/my-books/aurelia_project/tasks/run.js -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/aurelia_project/tasks/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6-Complete/my-books/aurelia_project/tasks/test.js -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6-Complete/my-books/books.json -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6-Complete/my-books/favicon.ico -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6-Complete/my-books/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6-Complete/my-books/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6-Complete/my-books/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6-Complete/my-books/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6-Complete/my-books/index.html -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6-Complete/my-books/jsconfig.json -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6-Complete/my-books/karma.conf.js -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6-Complete/my-books/package.json -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6-Complete/my-books/src/app.html -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6-Complete/my-books/src/app.js -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/src/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6-Complete/my-books/src/environment.js -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6-Complete/my-books/src/index.html -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/src/index.js: -------------------------------------------------------------------------------- 1 | export class Index{ 2 | } -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6-Complete/my-books/src/main.js -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/src/resources/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6-Complete/my-books/src/resources/index.js -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/src/services/book-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6-Complete/my-books/src/services/book-api.js -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6-Complete/my-books/src/styles.css -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/test/aurelia-karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6-Complete/my-books/test/aurelia-karma.js -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/test/unit/app.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6-Complete/my-books/test/unit/app.spec.js -------------------------------------------------------------------------------- /Chapter-6-Complete/my-books/test/unit/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6-Complete/my-books/test/unit/setup.js -------------------------------------------------------------------------------- /Chapter-6/Listing_6.10_books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6/Listing_6.10_books.js -------------------------------------------------------------------------------- /Chapter-6/Listing_6.11_star-rating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6/Listing_6.11_star-rating.js -------------------------------------------------------------------------------- /Chapter-6/Listing_6.12_star-rating.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6/Listing_6.12_star-rating.html -------------------------------------------------------------------------------- /Chapter-6/Listing_6.13_edit-book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6/Listing_6.13_edit-book.js -------------------------------------------------------------------------------- /Chapter-6/Listing_6.14.edit-book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6/Listing_6.14.edit-book.html -------------------------------------------------------------------------------- /Chapter-6/Listing_6.1_book-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6/Listing_6.1_book-list.js -------------------------------------------------------------------------------- /Chapter-6/Listing_6.2_books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6/Listing_6.2_books.js -------------------------------------------------------------------------------- /Chapter-6/Listing_6.3_date-format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6/Listing_6.3_date-format.js -------------------------------------------------------------------------------- /Chapter-6/Listing_6.4.book-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6/Listing_6.4.book-api.js -------------------------------------------------------------------------------- /Chapter-6/Listing_6.5_book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6/Listing_6.5_book.js -------------------------------------------------------------------------------- /Chapter-6/Listing_6.6_book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6/Listing_6.6_book.html -------------------------------------------------------------------------------- /Chapter-6/Listing_6.7_edit-book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6/Listing_6.7_edit-book.js -------------------------------------------------------------------------------- /Chapter-6/Listing_6.8_edit-book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6/Listing_6.8_edit-book.html -------------------------------------------------------------------------------- /Chapter-6/Listing_6.9_book-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-6/Listing_6.9_book-list.html -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7-Complete/my-books/.babelrc -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7-Complete/my-books/.editorconfig -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./node_modules/aurelia-tools/.eslintrc.json" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | .DS_STORE 4 | -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/aurelia_project/aurelia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7-Complete/my-books/aurelia_project/aurelia.json -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/aurelia_project/tasks/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7-Complete/my-books/aurelia_project/tasks/run.js -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/aurelia_project/tasks/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7-Complete/my-books/aurelia_project/tasks/test.js -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7-Complete/my-books/books.json -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7-Complete/my-books/favicon.ico -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7-Complete/my-books/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7-Complete/my-books/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7-Complete/my-books/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7-Complete/my-books/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7-Complete/my-books/index.html -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7-Complete/my-books/jsconfig.json -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7-Complete/my-books/karma.conf.js -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7-Complete/my-books/package.json -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7-Complete/my-books/src/app.html -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7-Complete/my-books/src/app.js -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/src/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7-Complete/my-books/src/environment.js -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7-Complete/my-books/src/index.html -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/src/index.js: -------------------------------------------------------------------------------- 1 | export class Index{ 2 | } -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7-Complete/my-books/src/main.js -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/src/resources/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7-Complete/my-books/src/resources/index.js -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/src/services/book-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7-Complete/my-books/src/services/book-api.js -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7-Complete/my-books/src/styles.css -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/test/aurelia-karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7-Complete/my-books/test/aurelia-karma.js -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/test/unit/app.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7-Complete/my-books/test/unit/app.spec.js -------------------------------------------------------------------------------- /Chapter-7-Complete/my-books/test/unit/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7-Complete/my-books/test/unit/setup.js -------------------------------------------------------------------------------- /Chapter-7/LIsting_7.2_edit-book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7/LIsting_7.2_edit-book.html -------------------------------------------------------------------------------- /Chapter-7/Listing_7.10_edit.book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7/Listing_7.10_edit.book.js -------------------------------------------------------------------------------- /Chapter-7/Listing_7.11_edit-book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7/Listing_7.11_edit-book.html -------------------------------------------------------------------------------- /Chapter-7/Listing_7.12.edit-book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7/Listing_7.12.edit-book.html -------------------------------------------------------------------------------- /Chapter-7/Listing_7.13_edit-book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7/Listing_7.13_edit-book.js -------------------------------------------------------------------------------- /Chapter-7/Listing_7.14_edit.book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7/Listing_7.14_edit.book.html -------------------------------------------------------------------------------- /Chapter-7/Listing_7.15_edit-book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7/Listing_7.15_edit-book.js -------------------------------------------------------------------------------- /Chapter-7/Listing_7.16_edit-book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7/Listing_7.16_edit-book.js -------------------------------------------------------------------------------- /Chapter-7/Listing_7.17_edit-book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7/Listing_7.17_edit-book.html -------------------------------------------------------------------------------- /Chapter-7/Listing_7.1_edit-book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7/Listing_7.1_edit-book.js -------------------------------------------------------------------------------- /Chapter-7/Listing_7.3_book-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7/Listing_7.3_book-api.js -------------------------------------------------------------------------------- /Chapter-7/Listing_7.4_books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7/Listing_7.4_books.js -------------------------------------------------------------------------------- /Chapter-7/Listing_7.5_books.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7/Listing_7.5_books.html -------------------------------------------------------------------------------- /Chapter-7/Listing_7.6_book-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7/Listing_7.6_book-list.js -------------------------------------------------------------------------------- /Chapter-7/Listing_7.7_book-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7/Listing_7.7_book-list.html -------------------------------------------------------------------------------- /Chapter-7/Listing_7.8_book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7/Listing_7.8_book.js -------------------------------------------------------------------------------- /Chapter-7/Listing_7.9_book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-7/Listing_7.9_book.html -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8-Complete/my-books/.babelrc -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8-Complete/my-books/.editorconfig -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./node_modules/aurelia-tools/.eslintrc.json" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | .DS_STORE 4 | -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/aurelia_project/aurelia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8-Complete/my-books/aurelia_project/aurelia.json -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/aurelia_project/tasks/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8-Complete/my-books/aurelia_project/tasks/run.js -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/aurelia_project/tasks/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8-Complete/my-books/aurelia_project/tasks/test.js -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8-Complete/my-books/books.json -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8-Complete/my-books/favicon.ico -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8-Complete/my-books/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8-Complete/my-books/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8-Complete/my-books/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8-Complete/my-books/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8-Complete/my-books/index.html -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8-Complete/my-books/jsconfig.json -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8-Complete/my-books/karma.conf.js -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8-Complete/my-books/package.json -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8-Complete/my-books/src/app.html -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8-Complete/my-books/src/app.js -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/src/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8-Complete/my-books/src/environment.js -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8-Complete/my-books/src/index.html -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/src/index.js: -------------------------------------------------------------------------------- 1 | export class Index{ 2 | } -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8-Complete/my-books/src/main.js -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/src/resources/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8-Complete/my-books/src/resources/index.js -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/src/services/book-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8-Complete/my-books/src/services/book-api.js -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8-Complete/my-books/src/styles.css -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/test/aurelia-karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8-Complete/my-books/test/aurelia-karma.js -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/test/unit/app.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8-Complete/my-books/test/unit/app.spec.js -------------------------------------------------------------------------------- /Chapter-8-Complete/my-books/test/unit/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8-Complete/my-books/test/unit/setup.js -------------------------------------------------------------------------------- /Chapter-8/Listing_8.1_book-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8/Listing_8.1_book-api.js -------------------------------------------------------------------------------- /Chapter-8/Listing_8.2_edit-book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8/Listing_8.2_edit-book.js -------------------------------------------------------------------------------- /Chapter-8/Listing_8.3_edit-book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8/Listing_8.3_edit-book.html -------------------------------------------------------------------------------- /Chapter-8/Listing_8.4_books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8/Listing_8.4_books.js -------------------------------------------------------------------------------- /Chapter-8/Listing_8.5_book-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8/Listing_8.5_book-api.js -------------------------------------------------------------------------------- /Chapter-8/Listing_8.6_book-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8/Listing_8.6_book-api.js -------------------------------------------------------------------------------- /Chapter-8/Listing_8.7_book-api-jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8/Listing_8.7_book-api-jsonp.js -------------------------------------------------------------------------------- /Chapter-8/Listing_8.8_books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-8/Listing_8.8_books.js -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/.babelrc -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/.editorconfig -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./node_modules/aurelia-tools/.eslintrc.json" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | .DS_STORE 4 | -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/aurelia_project/aurelia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/aurelia_project/aurelia.json -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/aurelia_project/tasks/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/aurelia_project/tasks/run.js -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/aurelia_project/tasks/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/aurelia_project/tasks/test.js -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/books.json -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/favicon.ico -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/images/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/images/background.jpeg -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/index.html -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/jsconfig.json -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/karma.conf.js -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/package.json -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/src/app.html -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/src/app.js -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/src/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/src/environment.js -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/src/index.html -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/src/index.js: -------------------------------------------------------------------------------- 1 | export class Index{ 2 | } -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/src/login-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/src/login-layout.html -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/src/login-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/src/login-styles.css -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/src/main-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/src/main-layout.html -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/src/main-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/src/main-layout.js -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/src/main.js -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/src/resources/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/src/resources/index.js -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/src/services/book-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/src/services/book-api.js -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/src/services/user-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/src/services/user-api.js -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/src/styles.css -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/test/aurelia-karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/test/aurelia-karma.js -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/test/unit/app.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/test/unit/app.spec.js -------------------------------------------------------------------------------- /Chapter-9-Complete/my-books/test/unit/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9-Complete/my-books/test/unit/setup.js -------------------------------------------------------------------------------- /Chapter-9/Listing_9.10_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9/Listing_9.10_app.js -------------------------------------------------------------------------------- /Chapter-9/Listing_9.11_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9/Listing_9.11_app.js -------------------------------------------------------------------------------- /Chapter-9/Listing_9.12_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9/Listing_9.12_app.js -------------------------------------------------------------------------------- /Chapter-9/Listing_9.13_what-happened.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9/Listing_9.13_what-happened.html -------------------------------------------------------------------------------- /Chapter-9/Listing_9.14_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9/Listing_9.14_app.js -------------------------------------------------------------------------------- /Chapter-9/Listing_9.15_unknown-route-admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9/Listing_9.15_unknown-route-admin.html -------------------------------------------------------------------------------- /Chapter-9/Listing_9.16_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9/Listing_9.16_app.js -------------------------------------------------------------------------------- /Chapter-9/Listing_9.17_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9/Listing_9.17_app.js -------------------------------------------------------------------------------- /Chapter-9/Listing_9.18_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9/Listing_9.18_app.html -------------------------------------------------------------------------------- /Chapter-9/Listing_9.19_login-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9/Listing_9.19_login-layout.html -------------------------------------------------------------------------------- /Chapter-9/Listing_9.1_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9/Listing_9.1_app.js -------------------------------------------------------------------------------- /Chapter-9/Listing_9.20_main-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9/Listing_9.20_main-layout.js -------------------------------------------------------------------------------- /Chapter-9/Listing_9.21_main-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9/Listing_9.21_main-layout.html -------------------------------------------------------------------------------- /Chapter-9/Listing_9.22_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9/Listing_9.22_app.html -------------------------------------------------------------------------------- /Chapter-9/Listing_9.23_login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9/Listing_9.23_login.js -------------------------------------------------------------------------------- /Chapter-9/Listing_9.24_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9/Listing_9.24_login.html -------------------------------------------------------------------------------- /Chapter-9/Listing_9.25_login-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9/Listing_9.25_login-styles.css -------------------------------------------------------------------------------- /Chapter-9/Listing_9.26_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9/Listing_9.26_app.js -------------------------------------------------------------------------------- /Chapter-9/Listing_9.2_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9/Listing_9.2_app.js -------------------------------------------------------------------------------- /Chapter-9/Listing_9.3_nav-bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9/Listing_9.3_nav-bar.html -------------------------------------------------------------------------------- /Chapter-9/Listing_9.4_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9/Listing_9.4_app.html -------------------------------------------------------------------------------- /Chapter-9/Listing_9.5_user-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9/Listing_9.5_user-api.js -------------------------------------------------------------------------------- /Chapter-9/Listing_9.6_users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9/Listing_9.6_users.js -------------------------------------------------------------------------------- /Chapter-9/Listing_9.7_users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9/Listing_9.7_users.html -------------------------------------------------------------------------------- /Chapter-9/Listing_9.8_user-details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9/Listing_9.8_user-details.js -------------------------------------------------------------------------------- /Chapter-9/Listing_9.9_user-details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/Chapter-9/Listing_9.9_user-details.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freshcutdevelopment/Aurelia-in-Action/HEAD/README.md --------------------------------------------------------------------------------