├── .gitignore ├── .travis.yml ├── .vscode ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── bower.json ├── docs ├── base-framework.md ├── css │ ├── admonition.css │ ├── ajax-loader.gif │ ├── custom.css │ ├── fonts │ │ ├── slick.eot │ │ ├── slick.svg │ │ ├── slick.ttf │ │ └── slick.woff │ ├── keys.css │ ├── slick-theme.css │ └── slick.css ├── development-tips.md ├── getting-started.md ├── gulp-tasks.md ├── img │ ├── base-framework-view-layout.png │ ├── chrome-development.png │ ├── screenshot_1.jpg │ ├── screenshot_2.jpg │ ├── screenshot_3.jpg │ ├── screenshot_4.jpg │ ├── screenshot_5.jpg │ ├── screenshot_6.jpg │ ├── vscode-launcher.png │ └── vscode-matchers.png ├── index.md ├── js │ ├── screenshots.js │ └── slick.min.js ├── project-layout-other-directories.md ├── project-layout-resources-directory.md ├── project-layout-root-files.md ├── project-layout-src-directory.md ├── project-layout-www-directory.md └── unit-testing.md ├── gulpfile.js ├── hooks ├── README.md └── after_prepare │ └── 010_add_platform_class.js ├── ionic.project ├── karma.conf.js ├── mkdocs.yml ├── package.json ├── resources ├── android │ ├── icon │ │ ├── drawable-hdpi-icon.png │ │ ├── drawable-ldpi-icon.png │ │ ├── drawable-mdpi-icon.png │ │ ├── drawable-xhdpi-icon.png │ │ ├── drawable-xxhdpi-icon.png │ │ └── drawable-xxxhdpi-icon.png │ └── splash │ │ ├── drawable-land-hdpi-screen.png │ │ ├── drawable-land-ldpi-screen.png │ │ ├── drawable-land-mdpi-screen.png │ │ ├── drawable-land-xhdpi-screen.png │ │ ├── drawable-land-xxhdpi-screen.png │ │ ├── drawable-land-xxxhdpi-screen.png │ │ ├── drawable-port-hdpi-screen.png │ │ ├── drawable-port-ldpi-screen.png │ │ ├── drawable-port-mdpi-screen.png │ │ ├── drawable-port-xhdpi-screen.png │ │ ├── drawable-port-xxhdpi-screen.png │ │ └── drawable-port-xxxhdpi-screen.png ├── build │ ├── remote.yml │ └── tasks │ │ ├── clean │ │ ├── clean-bower.js │ │ ├── clean-build.js │ │ ├── clean-chrome.js │ │ ├── clean-config.js │ │ ├── clean-libs.js │ │ ├── clean-node.js │ │ ├── clean-platforms.js │ │ ├── clean-plugins.js │ │ ├── clean-sass.js │ │ ├── clean-templates.js │ │ ├── clean-ts.js │ │ ├── clean-tsd.js │ │ ├── clean-typedoc.js │ │ └── clean-web.js │ │ ├── config.js │ │ ├── emulate-android.js │ │ ├── emulate-ios-remote.js │ │ ├── emulate-ios.js │ │ ├── git-check.js │ │ ├── helper.js │ │ ├── init.js │ │ ├── libs.js │ │ ├── lint.js │ │ ├── minify.js │ │ ├── package-chrome.js │ │ ├── package-remote-build.js │ │ ├── package-web.js │ │ ├── plugins.js │ │ ├── sass.js │ │ ├── templates.js │ │ ├── test.js │ │ ├── ts-src-readme.js │ │ ├── ts-src.js │ │ ├── ts-tests.js │ │ ├── ts.js │ │ ├── tsd-app.js │ │ ├── tsd-tests.js │ │ ├── tsd.js │ │ ├── typedoc.js │ │ └── watch.js ├── chrome │ ├── index.master.html │ ├── index.references.yml │ └── manifest.master.json ├── config │ ├── config.yml │ └── schemes.yml ├── cordova │ ├── config.master.xml │ ├── index.master.html │ └── index.references.yml ├── icon.png ├── ios │ ├── icon │ │ ├── icon-40.png │ │ ├── icon-40@2x.png │ │ ├── icon-50.png │ │ ├── icon-50@2x.png │ │ ├── icon-60.png │ │ ├── icon-60@2x.png │ │ ├── icon-60@3x.png │ │ ├── icon-72.png │ │ ├── icon-72@2x.png │ │ ├── icon-76.png │ │ ├── icon-76@2x.png │ │ ├── icon-small.png │ │ ├── icon-small@2x.png │ │ ├── icon-small@3x.png │ │ ├── icon.png │ │ └── icon@2x.png │ └── splash │ │ ├── Default-568h@2x~iphone.png │ │ ├── Default-667h.png │ │ ├── Default-736h.png │ │ ├── Default-Landscape-736h.png │ │ ├── Default-Landscape@2x~ipad.png │ │ ├── Default-Landscape~ipad.png │ │ ├── Default-Portrait@2x~ipad.png │ │ ├── Default-Portrait~ipad.png │ │ ├── Default@2x~iphone.png │ │ └── Default~iphone.png ├── splash.png └── web │ ├── browserconfig.master.xml │ ├── index.master.html │ ├── index.references.yml │ └── manifest.master.json ├── src ├── Application │ ├── Application.ts │ ├── Constants.ts │ └── RouteConfig.ts ├── Directives │ ├── Icon-Panel │ │ ├── Icon-Panel.scss │ │ └── IconPanelDirective.ts │ └── OnLoadDirective.ts ├── Filters │ └── ThousandsFilter.ts ├── Framework │ ├── BaseController.ts │ ├── BaseDialogController.ts │ ├── BaseElementDirective.ts │ ├── BasePopoverController.ts │ ├── Boot2.ts │ ├── BootHelper.ts │ ├── DialogOptions.ts │ └── EmptyViewModel.ts ├── Interfaces │ ├── BuildConfig.ts │ ├── BuildVars.ts │ ├── Dictionary.ts │ ├── KeyValuePair.ts │ ├── RequestConfig.ts │ └── ViewEventArguments.ts ├── Models │ ├── Category.ts │ ├── KeyValuePair.ts │ ├── LogEntry.ts │ └── LogLevel.ts ├── Services │ ├── Compatibility.ts │ ├── Configuration.ts │ ├── FileUtilities.ts │ ├── HttpInterceptor.ts │ ├── Logger.ts │ ├── MenuDataSource.ts │ ├── MockHttpApis.ts │ ├── MockPlatformApis.ts │ ├── Platform.ts │ ├── Plugins.ts │ ├── Preferences.ts │ ├── UIHelper.ts │ └── Utilities.ts ├── Styles │ ├── Common │ │ ├── Devices.scss │ │ ├── Misc-Layout.scss │ │ └── Overlay-Spinner.scss │ ├── Index.scss │ └── Overrides │ │ ├── Ionic-Variables.scss │ │ ├── Ionic.scss │ │ └── NProgress.scss ├── Views │ ├── Blank.html │ ├── Category │ │ ├── Category.html │ │ ├── CategoryController.ts │ │ └── CategoryViewModel.ts │ ├── Dialogs │ │ ├── Pin-Entry │ │ │ ├── Pin-Entry.html │ │ │ ├── Pin-Entry.scss │ │ │ ├── PinEntryController.ts │ │ │ ├── PinEntryDialogModel.ts │ │ │ ├── PinEntryDialogResultModel.ts │ │ │ └── PinEntryViewModel.ts │ │ └── Reorder-Categories │ │ │ ├── Reorder-Categories.html │ │ │ ├── ReorderCategoriesController.ts │ │ │ └── ReorderCategoriesViewModel.ts │ ├── Onboarding │ │ ├── Onboarding-Register │ │ │ ├── Onboarding-Register.html │ │ │ ├── OnboardingRegisterController.ts │ │ │ └── OnboardingRegisterViewModel.ts │ │ ├── Onboarding-Share │ │ │ ├── Onboarding-Share.html │ │ │ └── OnboardingShareController.ts │ │ └── Onboarding-Splash │ │ │ ├── Onboarding-Splash.html │ │ │ └── OnboardingSplashController.ts │ ├── Root │ │ ├── Root.html │ │ ├── RootController.ts │ │ └── RootViewModel.ts │ └── Settings │ │ ├── About │ │ ├── About.html │ │ ├── AboutController.ts │ │ └── AboutViewModel.ts │ │ ├── Cloud-Sync │ │ ├── Cloud-Sync.html │ │ ├── CloudSyncController.ts │ │ └── CloudSyncViewModel.ts │ │ ├── Configure-Pin │ │ ├── Configure-Pin.html │ │ ├── ConfigurePinController.ts │ │ └── ConfigurePinViewModel.ts │ │ ├── Developer │ │ ├── Developer.html │ │ ├── DeveloperController.ts │ │ └── DeveloperViewModel.ts │ │ ├── Log-Entry │ │ ├── Log-Entry.html │ │ ├── LogEntryController.ts │ │ └── LogEntryViewModel.ts │ │ ├── Logs-List │ │ ├── Log-Filter-Menu │ │ │ ├── Log-Filter-Menu.html │ │ │ ├── LogFilterMenuController.ts │ │ │ └── LogFilterMenuViewModel.ts │ │ ├── Logs-List.html │ │ ├── LogsListController.ts │ │ └── LogsListViewModel.ts │ │ └── Settings-List │ │ ├── Settings-List.html │ │ ├── SettingsListController.ts │ │ └── SettingsListViewModel.ts ├── _references.ts └── tsconfig.json ├── tests ├── Services │ ├── FileUtilities.Tests.ts │ └── Utilities.Tests.ts ├── _references.ts └── tsconfig.json ├── tsd.json ├── tsd.tests.json ├── tslint.json ├── typings └── custom │ ├── com.verso.cordova.clipboard.d.ts │ ├── extensions.d.ts │ ├── ionic.d.ts │ └── nl.x-services.plugins.toast.d.ts └── www ├── images ├── about-icon.png ├── place-holder.png └── web-app-icons │ ├── android-icon-144x144.png │ ├── android-icon-192x192.png │ ├── android-icon-36x36.png │ ├── android-icon-48x48.png │ ├── android-icon-72x72.png │ ├── android-icon-96x96.png │ ├── apple-icon-114x114.png │ ├── apple-icon-120x120.png │ ├── apple-icon-144x144.png │ ├── apple-icon-152x152.png │ ├── apple-icon-180x180.png │ ├── apple-icon-57x57.png │ ├── apple-icon-60x60.png │ ├── apple-icon-72x72.png │ ├── apple-icon-76x76.png │ ├── apple-icon-precomposed.png │ ├── apple-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── ms-icon-144x144.png │ ├── ms-icon-150x150.png │ ├── ms-icon-310x310.png │ └── ms-icon-70x70.png └── js └── boot1.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/bower.json -------------------------------------------------------------------------------- /docs/base-framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/base-framework.md -------------------------------------------------------------------------------- /docs/css/admonition.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/css/admonition.css -------------------------------------------------------------------------------- /docs/css/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/css/ajax-loader.gif -------------------------------------------------------------------------------- /docs/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/css/custom.css -------------------------------------------------------------------------------- /docs/css/fonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/css/fonts/slick.eot -------------------------------------------------------------------------------- /docs/css/fonts/slick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/css/fonts/slick.svg -------------------------------------------------------------------------------- /docs/css/fonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/css/fonts/slick.ttf -------------------------------------------------------------------------------- /docs/css/fonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/css/fonts/slick.woff -------------------------------------------------------------------------------- /docs/css/keys.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/css/keys.css -------------------------------------------------------------------------------- /docs/css/slick-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/css/slick-theme.css -------------------------------------------------------------------------------- /docs/css/slick.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/css/slick.css -------------------------------------------------------------------------------- /docs/development-tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/development-tips.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/gulp-tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/gulp-tasks.md -------------------------------------------------------------------------------- /docs/img/base-framework-view-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/img/base-framework-view-layout.png -------------------------------------------------------------------------------- /docs/img/chrome-development.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/img/chrome-development.png -------------------------------------------------------------------------------- /docs/img/screenshot_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/img/screenshot_1.jpg -------------------------------------------------------------------------------- /docs/img/screenshot_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/img/screenshot_2.jpg -------------------------------------------------------------------------------- /docs/img/screenshot_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/img/screenshot_3.jpg -------------------------------------------------------------------------------- /docs/img/screenshot_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/img/screenshot_4.jpg -------------------------------------------------------------------------------- /docs/img/screenshot_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/img/screenshot_5.jpg -------------------------------------------------------------------------------- /docs/img/screenshot_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/img/screenshot_6.jpg -------------------------------------------------------------------------------- /docs/img/vscode-launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/img/vscode-launcher.png -------------------------------------------------------------------------------- /docs/img/vscode-matchers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/img/vscode-matchers.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/js/screenshots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/js/screenshots.js -------------------------------------------------------------------------------- /docs/js/slick.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/js/slick.min.js -------------------------------------------------------------------------------- /docs/project-layout-other-directories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/project-layout-other-directories.md -------------------------------------------------------------------------------- /docs/project-layout-resources-directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/project-layout-resources-directory.md -------------------------------------------------------------------------------- /docs/project-layout-root-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/project-layout-root-files.md -------------------------------------------------------------------------------- /docs/project-layout-src-directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/project-layout-src-directory.md -------------------------------------------------------------------------------- /docs/project-layout-www-directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/project-layout-www-directory.md -------------------------------------------------------------------------------- /docs/unit-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/docs/unit-testing.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/gulpfile.js -------------------------------------------------------------------------------- /hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/hooks/README.md -------------------------------------------------------------------------------- /hooks/after_prepare/010_add_platform_class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/hooks/after_prepare/010_add_platform_class.js -------------------------------------------------------------------------------- /ionic.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/ionic.project -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/karma.conf.js -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/package.json -------------------------------------------------------------------------------- /resources/android/icon/drawable-hdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/android/icon/drawable-hdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-ldpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/android/icon/drawable-ldpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-mdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/android/icon/drawable-mdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/android/icon/drawable-xhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/android/icon/drawable-xxhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/icon/drawable-xxxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/android/icon/drawable-xxxhdpi-icon.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/android/splash/drawable-land-hdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/android/splash/drawable-land-ldpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/android/splash/drawable-land-mdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/android/splash/drawable-land-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/android/splash/drawable-land-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-land-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/android/splash/drawable-land-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/android/splash/drawable-port-hdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/android/splash/drawable-port-ldpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/android/splash/drawable-port-mdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/android/splash/drawable-port-xhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/android/splash/drawable-port-xxhdpi-screen.png -------------------------------------------------------------------------------- /resources/android/splash/drawable-port-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/android/splash/drawable-port-xxxhdpi-screen.png -------------------------------------------------------------------------------- /resources/build/remote.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/remote.yml -------------------------------------------------------------------------------- /resources/build/tasks/clean/clean-bower.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/clean/clean-bower.js -------------------------------------------------------------------------------- /resources/build/tasks/clean/clean-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/clean/clean-build.js -------------------------------------------------------------------------------- /resources/build/tasks/clean/clean-chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/clean/clean-chrome.js -------------------------------------------------------------------------------- /resources/build/tasks/clean/clean-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/clean/clean-config.js -------------------------------------------------------------------------------- /resources/build/tasks/clean/clean-libs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/clean/clean-libs.js -------------------------------------------------------------------------------- /resources/build/tasks/clean/clean-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/clean/clean-node.js -------------------------------------------------------------------------------- /resources/build/tasks/clean/clean-platforms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/clean/clean-platforms.js -------------------------------------------------------------------------------- /resources/build/tasks/clean/clean-plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/clean/clean-plugins.js -------------------------------------------------------------------------------- /resources/build/tasks/clean/clean-sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/clean/clean-sass.js -------------------------------------------------------------------------------- /resources/build/tasks/clean/clean-templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/clean/clean-templates.js -------------------------------------------------------------------------------- /resources/build/tasks/clean/clean-ts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/clean/clean-ts.js -------------------------------------------------------------------------------- /resources/build/tasks/clean/clean-tsd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/clean/clean-tsd.js -------------------------------------------------------------------------------- /resources/build/tasks/clean/clean-typedoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/clean/clean-typedoc.js -------------------------------------------------------------------------------- /resources/build/tasks/clean/clean-web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/clean/clean-web.js -------------------------------------------------------------------------------- /resources/build/tasks/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/config.js -------------------------------------------------------------------------------- /resources/build/tasks/emulate-android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/emulate-android.js -------------------------------------------------------------------------------- /resources/build/tasks/emulate-ios-remote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/emulate-ios-remote.js -------------------------------------------------------------------------------- /resources/build/tasks/emulate-ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/emulate-ios.js -------------------------------------------------------------------------------- /resources/build/tasks/git-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/git-check.js -------------------------------------------------------------------------------- /resources/build/tasks/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/helper.js -------------------------------------------------------------------------------- /resources/build/tasks/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/init.js -------------------------------------------------------------------------------- /resources/build/tasks/libs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/libs.js -------------------------------------------------------------------------------- /resources/build/tasks/lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/lint.js -------------------------------------------------------------------------------- /resources/build/tasks/minify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/minify.js -------------------------------------------------------------------------------- /resources/build/tasks/package-chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/package-chrome.js -------------------------------------------------------------------------------- /resources/build/tasks/package-remote-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/package-remote-build.js -------------------------------------------------------------------------------- /resources/build/tasks/package-web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/package-web.js -------------------------------------------------------------------------------- /resources/build/tasks/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/plugins.js -------------------------------------------------------------------------------- /resources/build/tasks/sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/sass.js -------------------------------------------------------------------------------- /resources/build/tasks/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/templates.js -------------------------------------------------------------------------------- /resources/build/tasks/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/test.js -------------------------------------------------------------------------------- /resources/build/tasks/ts-src-readme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/ts-src-readme.js -------------------------------------------------------------------------------- /resources/build/tasks/ts-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/ts-src.js -------------------------------------------------------------------------------- /resources/build/tasks/ts-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/ts-tests.js -------------------------------------------------------------------------------- /resources/build/tasks/ts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/ts.js -------------------------------------------------------------------------------- /resources/build/tasks/tsd-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/tsd-app.js -------------------------------------------------------------------------------- /resources/build/tasks/tsd-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/tsd-tests.js -------------------------------------------------------------------------------- /resources/build/tasks/tsd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/tsd.js -------------------------------------------------------------------------------- /resources/build/tasks/typedoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/typedoc.js -------------------------------------------------------------------------------- /resources/build/tasks/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/build/tasks/watch.js -------------------------------------------------------------------------------- /resources/chrome/index.master.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/chrome/index.master.html -------------------------------------------------------------------------------- /resources/chrome/index.references.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/chrome/index.references.yml -------------------------------------------------------------------------------- /resources/chrome/manifest.master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/chrome/manifest.master.json -------------------------------------------------------------------------------- /resources/config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/config/config.yml -------------------------------------------------------------------------------- /resources/config/schemes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/config/schemes.yml -------------------------------------------------------------------------------- /resources/cordova/config.master.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/cordova/config.master.xml -------------------------------------------------------------------------------- /resources/cordova/index.master.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/cordova/index.master.html -------------------------------------------------------------------------------- /resources/cordova/index.references.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/cordova/index.references.yml -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/ios/icon/icon-40.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/ios/icon/icon-40@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/ios/icon/icon-50.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/ios/icon/icon-50@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/ios/icon/icon-60.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/ios/icon/icon-60@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/ios/icon/icon-60@3x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/ios/icon/icon-72.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/ios/icon/icon-72@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/ios/icon/icon-76.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/ios/icon/icon-76@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/ios/icon/icon-small.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/ios/icon/icon-small@2x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/ios/icon/icon-small@3x.png -------------------------------------------------------------------------------- /resources/ios/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/ios/icon/icon.png -------------------------------------------------------------------------------- /resources/ios/icon/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/ios/icon/icon@2x.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-568h@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/ios/splash/Default-568h@2x~iphone.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-667h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/ios/splash/Default-667h.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/ios/splash/Default-736h.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/ios/splash/Default-Landscape-736h.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/ios/splash/Default-Landscape@2x~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/ios/splash/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/ios/splash/Default-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/ios/splash/Default-Portrait~ipad.png -------------------------------------------------------------------------------- /resources/ios/splash/Default@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/ios/splash/Default@2x~iphone.png -------------------------------------------------------------------------------- /resources/ios/splash/Default~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/ios/splash/Default~iphone.png -------------------------------------------------------------------------------- /resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/splash.png -------------------------------------------------------------------------------- /resources/web/browserconfig.master.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/web/browserconfig.master.xml -------------------------------------------------------------------------------- /resources/web/index.master.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/web/index.master.html -------------------------------------------------------------------------------- /resources/web/index.references.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/web/index.references.yml -------------------------------------------------------------------------------- /resources/web/manifest.master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/resources/web/manifest.master.json -------------------------------------------------------------------------------- /src/Application/Application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Application/Application.ts -------------------------------------------------------------------------------- /src/Application/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Application/Constants.ts -------------------------------------------------------------------------------- /src/Application/RouteConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Application/RouteConfig.ts -------------------------------------------------------------------------------- /src/Directives/Icon-Panel/Icon-Panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Directives/Icon-Panel/Icon-Panel.scss -------------------------------------------------------------------------------- /src/Directives/Icon-Panel/IconPanelDirective.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Directives/Icon-Panel/IconPanelDirective.ts -------------------------------------------------------------------------------- /src/Directives/OnLoadDirective.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Directives/OnLoadDirective.ts -------------------------------------------------------------------------------- /src/Filters/ThousandsFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Filters/ThousandsFilter.ts -------------------------------------------------------------------------------- /src/Framework/BaseController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Framework/BaseController.ts -------------------------------------------------------------------------------- /src/Framework/BaseDialogController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Framework/BaseDialogController.ts -------------------------------------------------------------------------------- /src/Framework/BaseElementDirective.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Framework/BaseElementDirective.ts -------------------------------------------------------------------------------- /src/Framework/BasePopoverController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Framework/BasePopoverController.ts -------------------------------------------------------------------------------- /src/Framework/Boot2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Framework/Boot2.ts -------------------------------------------------------------------------------- /src/Framework/BootHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Framework/BootHelper.ts -------------------------------------------------------------------------------- /src/Framework/DialogOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Framework/DialogOptions.ts -------------------------------------------------------------------------------- /src/Framework/EmptyViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Framework/EmptyViewModel.ts -------------------------------------------------------------------------------- /src/Interfaces/BuildConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Interfaces/BuildConfig.ts -------------------------------------------------------------------------------- /src/Interfaces/BuildVars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Interfaces/BuildVars.ts -------------------------------------------------------------------------------- /src/Interfaces/Dictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Interfaces/Dictionary.ts -------------------------------------------------------------------------------- /src/Interfaces/KeyValuePair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Interfaces/KeyValuePair.ts -------------------------------------------------------------------------------- /src/Interfaces/RequestConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Interfaces/RequestConfig.ts -------------------------------------------------------------------------------- /src/Interfaces/ViewEventArguments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Interfaces/ViewEventArguments.ts -------------------------------------------------------------------------------- /src/Models/Category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Models/Category.ts -------------------------------------------------------------------------------- /src/Models/KeyValuePair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Models/KeyValuePair.ts -------------------------------------------------------------------------------- /src/Models/LogEntry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Models/LogEntry.ts -------------------------------------------------------------------------------- /src/Models/LogLevel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Models/LogLevel.ts -------------------------------------------------------------------------------- /src/Services/Compatibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Services/Compatibility.ts -------------------------------------------------------------------------------- /src/Services/Configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Services/Configuration.ts -------------------------------------------------------------------------------- /src/Services/FileUtilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Services/FileUtilities.ts -------------------------------------------------------------------------------- /src/Services/HttpInterceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Services/HttpInterceptor.ts -------------------------------------------------------------------------------- /src/Services/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Services/Logger.ts -------------------------------------------------------------------------------- /src/Services/MenuDataSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Services/MenuDataSource.ts -------------------------------------------------------------------------------- /src/Services/MockHttpApis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Services/MockHttpApis.ts -------------------------------------------------------------------------------- /src/Services/MockPlatformApis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Services/MockPlatformApis.ts -------------------------------------------------------------------------------- /src/Services/Platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Services/Platform.ts -------------------------------------------------------------------------------- /src/Services/Plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Services/Plugins.ts -------------------------------------------------------------------------------- /src/Services/Preferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Services/Preferences.ts -------------------------------------------------------------------------------- /src/Services/UIHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Services/UIHelper.ts -------------------------------------------------------------------------------- /src/Services/Utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Services/Utilities.ts -------------------------------------------------------------------------------- /src/Styles/Common/Devices.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Styles/Common/Devices.scss -------------------------------------------------------------------------------- /src/Styles/Common/Misc-Layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Styles/Common/Misc-Layout.scss -------------------------------------------------------------------------------- /src/Styles/Common/Overlay-Spinner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Styles/Common/Overlay-Spinner.scss -------------------------------------------------------------------------------- /src/Styles/Index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Styles/Index.scss -------------------------------------------------------------------------------- /src/Styles/Overrides/Ionic-Variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Styles/Overrides/Ionic-Variables.scss -------------------------------------------------------------------------------- /src/Styles/Overrides/Ionic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Styles/Overrides/Ionic.scss -------------------------------------------------------------------------------- /src/Styles/Overrides/NProgress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Styles/Overrides/NProgress.scss -------------------------------------------------------------------------------- /src/Views/Blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Blank.html -------------------------------------------------------------------------------- /src/Views/Category/Category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Category/Category.html -------------------------------------------------------------------------------- /src/Views/Category/CategoryController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Category/CategoryController.ts -------------------------------------------------------------------------------- /src/Views/Category/CategoryViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Category/CategoryViewModel.ts -------------------------------------------------------------------------------- /src/Views/Dialogs/Pin-Entry/Pin-Entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Dialogs/Pin-Entry/Pin-Entry.html -------------------------------------------------------------------------------- /src/Views/Dialogs/Pin-Entry/Pin-Entry.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Dialogs/Pin-Entry/Pin-Entry.scss -------------------------------------------------------------------------------- /src/Views/Dialogs/Pin-Entry/PinEntryController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Dialogs/Pin-Entry/PinEntryController.ts -------------------------------------------------------------------------------- /src/Views/Dialogs/Pin-Entry/PinEntryDialogModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Dialogs/Pin-Entry/PinEntryDialogModel.ts -------------------------------------------------------------------------------- /src/Views/Dialogs/Pin-Entry/PinEntryDialogResultModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Dialogs/Pin-Entry/PinEntryDialogResultModel.ts -------------------------------------------------------------------------------- /src/Views/Dialogs/Pin-Entry/PinEntryViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Dialogs/Pin-Entry/PinEntryViewModel.ts -------------------------------------------------------------------------------- /src/Views/Dialogs/Reorder-Categories/Reorder-Categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Dialogs/Reorder-Categories/Reorder-Categories.html -------------------------------------------------------------------------------- /src/Views/Dialogs/Reorder-Categories/ReorderCategoriesController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Dialogs/Reorder-Categories/ReorderCategoriesController.ts -------------------------------------------------------------------------------- /src/Views/Dialogs/Reorder-Categories/ReorderCategoriesViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Dialogs/Reorder-Categories/ReorderCategoriesViewModel.ts -------------------------------------------------------------------------------- /src/Views/Onboarding/Onboarding-Register/Onboarding-Register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Onboarding/Onboarding-Register/Onboarding-Register.html -------------------------------------------------------------------------------- /src/Views/Onboarding/Onboarding-Register/OnboardingRegisterController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Onboarding/Onboarding-Register/OnboardingRegisterController.ts -------------------------------------------------------------------------------- /src/Views/Onboarding/Onboarding-Register/OnboardingRegisterViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Onboarding/Onboarding-Register/OnboardingRegisterViewModel.ts -------------------------------------------------------------------------------- /src/Views/Onboarding/Onboarding-Share/Onboarding-Share.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Onboarding/Onboarding-Share/Onboarding-Share.html -------------------------------------------------------------------------------- /src/Views/Onboarding/Onboarding-Share/OnboardingShareController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Onboarding/Onboarding-Share/OnboardingShareController.ts -------------------------------------------------------------------------------- /src/Views/Onboarding/Onboarding-Splash/Onboarding-Splash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Onboarding/Onboarding-Splash/Onboarding-Splash.html -------------------------------------------------------------------------------- /src/Views/Onboarding/Onboarding-Splash/OnboardingSplashController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Onboarding/Onboarding-Splash/OnboardingSplashController.ts -------------------------------------------------------------------------------- /src/Views/Root/Root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Root/Root.html -------------------------------------------------------------------------------- /src/Views/Root/RootController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Root/RootController.ts -------------------------------------------------------------------------------- /src/Views/Root/RootViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Root/RootViewModel.ts -------------------------------------------------------------------------------- /src/Views/Settings/About/About.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Settings/About/About.html -------------------------------------------------------------------------------- /src/Views/Settings/About/AboutController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Settings/About/AboutController.ts -------------------------------------------------------------------------------- /src/Views/Settings/About/AboutViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Settings/About/AboutViewModel.ts -------------------------------------------------------------------------------- /src/Views/Settings/Cloud-Sync/Cloud-Sync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Settings/Cloud-Sync/Cloud-Sync.html -------------------------------------------------------------------------------- /src/Views/Settings/Cloud-Sync/CloudSyncController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Settings/Cloud-Sync/CloudSyncController.ts -------------------------------------------------------------------------------- /src/Views/Settings/Cloud-Sync/CloudSyncViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Settings/Cloud-Sync/CloudSyncViewModel.ts -------------------------------------------------------------------------------- /src/Views/Settings/Configure-Pin/Configure-Pin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Settings/Configure-Pin/Configure-Pin.html -------------------------------------------------------------------------------- /src/Views/Settings/Configure-Pin/ConfigurePinController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Settings/Configure-Pin/ConfigurePinController.ts -------------------------------------------------------------------------------- /src/Views/Settings/Configure-Pin/ConfigurePinViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Settings/Configure-Pin/ConfigurePinViewModel.ts -------------------------------------------------------------------------------- /src/Views/Settings/Developer/Developer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Settings/Developer/Developer.html -------------------------------------------------------------------------------- /src/Views/Settings/Developer/DeveloperController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Settings/Developer/DeveloperController.ts -------------------------------------------------------------------------------- /src/Views/Settings/Developer/DeveloperViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Settings/Developer/DeveloperViewModel.ts -------------------------------------------------------------------------------- /src/Views/Settings/Log-Entry/Log-Entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Settings/Log-Entry/Log-Entry.html -------------------------------------------------------------------------------- /src/Views/Settings/Log-Entry/LogEntryController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Settings/Log-Entry/LogEntryController.ts -------------------------------------------------------------------------------- /src/Views/Settings/Log-Entry/LogEntryViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Settings/Log-Entry/LogEntryViewModel.ts -------------------------------------------------------------------------------- /src/Views/Settings/Logs-List/Log-Filter-Menu/Log-Filter-Menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Settings/Logs-List/Log-Filter-Menu/Log-Filter-Menu.html -------------------------------------------------------------------------------- /src/Views/Settings/Logs-List/Log-Filter-Menu/LogFilterMenuController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Settings/Logs-List/Log-Filter-Menu/LogFilterMenuController.ts -------------------------------------------------------------------------------- /src/Views/Settings/Logs-List/Log-Filter-Menu/LogFilterMenuViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Settings/Logs-List/Log-Filter-Menu/LogFilterMenuViewModel.ts -------------------------------------------------------------------------------- /src/Views/Settings/Logs-List/Logs-List.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Settings/Logs-List/Logs-List.html -------------------------------------------------------------------------------- /src/Views/Settings/Logs-List/LogsListController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Settings/Logs-List/LogsListController.ts -------------------------------------------------------------------------------- /src/Views/Settings/Logs-List/LogsListViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Settings/Logs-List/LogsListViewModel.ts -------------------------------------------------------------------------------- /src/Views/Settings/Settings-List/Settings-List.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Settings/Settings-List/Settings-List.html -------------------------------------------------------------------------------- /src/Views/Settings/Settings-List/SettingsListController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Settings/Settings-List/SettingsListController.ts -------------------------------------------------------------------------------- /src/Views/Settings/Settings-List/SettingsListViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/Views/Settings/Settings-List/SettingsListViewModel.ts -------------------------------------------------------------------------------- /src/_references.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/_references.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /tests/Services/FileUtilities.Tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/tests/Services/FileUtilities.Tests.ts -------------------------------------------------------------------------------- /tests/Services/Utilities.Tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/tests/Services/Utilities.Tests.ts -------------------------------------------------------------------------------- /tests/_references.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/tests/_references.ts -------------------------------------------------------------------------------- /tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/tests/tsconfig.json -------------------------------------------------------------------------------- /tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/tsd.json -------------------------------------------------------------------------------- /tsd.tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/tsd.tests.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/tslint.json -------------------------------------------------------------------------------- /typings/custom/com.verso.cordova.clipboard.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/typings/custom/com.verso.cordova.clipboard.d.ts -------------------------------------------------------------------------------- /typings/custom/extensions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/typings/custom/extensions.d.ts -------------------------------------------------------------------------------- /typings/custom/ionic.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/typings/custom/ionic.d.ts -------------------------------------------------------------------------------- /typings/custom/nl.x-services.plugins.toast.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/typings/custom/nl.x-services.plugins.toast.d.ts -------------------------------------------------------------------------------- /www/images/about-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/about-icon.png -------------------------------------------------------------------------------- /www/images/place-holder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/place-holder.png -------------------------------------------------------------------------------- /www/images/web-app-icons/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/web-app-icons/android-icon-144x144.png -------------------------------------------------------------------------------- /www/images/web-app-icons/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/web-app-icons/android-icon-192x192.png -------------------------------------------------------------------------------- /www/images/web-app-icons/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/web-app-icons/android-icon-36x36.png -------------------------------------------------------------------------------- /www/images/web-app-icons/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/web-app-icons/android-icon-48x48.png -------------------------------------------------------------------------------- /www/images/web-app-icons/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/web-app-icons/android-icon-72x72.png -------------------------------------------------------------------------------- /www/images/web-app-icons/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/web-app-icons/android-icon-96x96.png -------------------------------------------------------------------------------- /www/images/web-app-icons/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/web-app-icons/apple-icon-114x114.png -------------------------------------------------------------------------------- /www/images/web-app-icons/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/web-app-icons/apple-icon-120x120.png -------------------------------------------------------------------------------- /www/images/web-app-icons/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/web-app-icons/apple-icon-144x144.png -------------------------------------------------------------------------------- /www/images/web-app-icons/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/web-app-icons/apple-icon-152x152.png -------------------------------------------------------------------------------- /www/images/web-app-icons/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/web-app-icons/apple-icon-180x180.png -------------------------------------------------------------------------------- /www/images/web-app-icons/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/web-app-icons/apple-icon-57x57.png -------------------------------------------------------------------------------- /www/images/web-app-icons/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/web-app-icons/apple-icon-60x60.png -------------------------------------------------------------------------------- /www/images/web-app-icons/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/web-app-icons/apple-icon-72x72.png -------------------------------------------------------------------------------- /www/images/web-app-icons/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/web-app-icons/apple-icon-76x76.png -------------------------------------------------------------------------------- /www/images/web-app-icons/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/web-app-icons/apple-icon-precomposed.png -------------------------------------------------------------------------------- /www/images/web-app-icons/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/web-app-icons/apple-icon.png -------------------------------------------------------------------------------- /www/images/web-app-icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/web-app-icons/favicon-16x16.png -------------------------------------------------------------------------------- /www/images/web-app-icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/web-app-icons/favicon-32x32.png -------------------------------------------------------------------------------- /www/images/web-app-icons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/web-app-icons/favicon-96x96.png -------------------------------------------------------------------------------- /www/images/web-app-icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/web-app-icons/favicon.ico -------------------------------------------------------------------------------- /www/images/web-app-icons/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/web-app-icons/ms-icon-144x144.png -------------------------------------------------------------------------------- /www/images/web-app-icons/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/web-app-icons/ms-icon-150x150.png -------------------------------------------------------------------------------- /www/images/web-app-icons/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/web-app-icons/ms-icon-310x310.png -------------------------------------------------------------------------------- /www/images/web-app-icons/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/images/web-app-icons/ms-icon-70x70.png -------------------------------------------------------------------------------- /www/js/boot1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justin-Credible/Ionic-TypeScript-Starter/HEAD/www/js/boot1.js --------------------------------------------------------------------------------