├── .gitignore ├── README.md ├── app ├── app.component.html ├── app.component.js ├── app.component.js.map ├── app.component.ts ├── app.css ├── app.module.js ├── app.module.js.map ├── app.module.ts ├── main.aot.ts ├── main.js ├── main.js.map ├── main.ts └── package.json ├── images ├── add-android-platform.png ├── app_clock.png ├── app_component_html.png ├── app_component_ts.png ├── app_css.png ├── bootstrap-app.png ├── default_app.png ├── default_template.png ├── emulate-android.png ├── install-nativescript.png ├── livesync-android.png ├── masthead.png └── ng-book-2-as-book-cover-pigment.png ├── package.json ├── references.d.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/README.md -------------------------------------------------------------------------------- /app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/app/app.component.html -------------------------------------------------------------------------------- /app/app.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/app/app.component.js -------------------------------------------------------------------------------- /app/app.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/app/app.component.js.map -------------------------------------------------------------------------------- /app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/app/app.component.ts -------------------------------------------------------------------------------- /app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/app/app.css -------------------------------------------------------------------------------- /app/app.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/app/app.module.js -------------------------------------------------------------------------------- /app/app.module.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/app/app.module.js.map -------------------------------------------------------------------------------- /app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/app/app.module.ts -------------------------------------------------------------------------------- /app/main.aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/app/main.aot.ts -------------------------------------------------------------------------------- /app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/app/main.js -------------------------------------------------------------------------------- /app/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/app/main.js.map -------------------------------------------------------------------------------- /app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/app/main.ts -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/app/package.json -------------------------------------------------------------------------------- /images/add-android-platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/images/add-android-platform.png -------------------------------------------------------------------------------- /images/app_clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/images/app_clock.png -------------------------------------------------------------------------------- /images/app_component_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/images/app_component_html.png -------------------------------------------------------------------------------- /images/app_component_ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/images/app_component_ts.png -------------------------------------------------------------------------------- /images/app_css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/images/app_css.png -------------------------------------------------------------------------------- /images/bootstrap-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/images/bootstrap-app.png -------------------------------------------------------------------------------- /images/default_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/images/default_app.png -------------------------------------------------------------------------------- /images/default_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/images/default_template.png -------------------------------------------------------------------------------- /images/emulate-android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/images/emulate-android.png -------------------------------------------------------------------------------- /images/install-nativescript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/images/install-nativescript.png -------------------------------------------------------------------------------- /images/livesync-android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/images/livesync-android.png -------------------------------------------------------------------------------- /images/masthead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/images/masthead.png -------------------------------------------------------------------------------- /images/ng-book-2-as-book-cover-pigment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/images/ng-book-2-as-book-cover-pigment.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/package.json -------------------------------------------------------------------------------- /references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/references.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newlinedotco/mobile-clock/HEAD/tsconfig.json --------------------------------------------------------------------------------