├── .bowerrc ├── .editorconfig ├── .gitignore ├── .jshintignore ├── .jshintrc ├── Gruntfile.js ├── README.md ├── app ├── fonts │ ├── ionicons.eot │ ├── ionicons.svg │ ├── ionicons.ttf │ └── ionicons.woff ├── images │ └── app_icon.png ├── index.html ├── scripts │ ├── app.js │ └── controllers.js ├── styles │ └── main.css └── templates │ ├── contacts.html │ ├── home.html │ ├── intro.html │ └── loading.html ├── bower.json ├── config.xml ├── hooks ├── README.md ├── after_platform_add │ └── install_plugins.js ├── after_plugin_add │ └── register_plugins.js ├── after_plugin_rm │ └── deregister_plugins.js ├── after_prepare │ ├── 010_add_platform_class.js │ └── icons_and_splashscreens.js └── before_platform_add │ └── init_directories.js ├── ionic.project ├── package.json ├── resources └── android │ ├── drawable-hdpi │ └── icon.png │ ├── drawable-ldpi │ └── icon.png │ ├── drawable-mdpi │ └── icon.png │ ├── drawable-xhdpi │ └── icon.png │ ├── drawable-xxhdpi │ └── icon.png │ ├── drawable-xxxhdpi │ └── icon.png │ └── drawable │ └── icon.png └── test ├── .jshintrc └── spec └── controllers.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/lib" 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- 1 | app/scripts/config.js 2 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/.jshintrc -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/README.md -------------------------------------------------------------------------------- /app/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/app/fonts/ionicons.eot -------------------------------------------------------------------------------- /app/fonts/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/app/fonts/ionicons.svg -------------------------------------------------------------------------------- /app/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/app/fonts/ionicons.ttf -------------------------------------------------------------------------------- /app/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/app/fonts/ionicons.woff -------------------------------------------------------------------------------- /app/images/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/app/images/app_icon.png -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/app/index.html -------------------------------------------------------------------------------- /app/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/app/scripts/app.js -------------------------------------------------------------------------------- /app/scripts/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/app/scripts/controllers.js -------------------------------------------------------------------------------- /app/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/app/styles/main.css -------------------------------------------------------------------------------- /app/templates/contacts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/app/templates/contacts.html -------------------------------------------------------------------------------- /app/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/app/templates/home.html -------------------------------------------------------------------------------- /app/templates/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/app/templates/intro.html -------------------------------------------------------------------------------- /app/templates/loading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/app/templates/loading.html -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/bower.json -------------------------------------------------------------------------------- /config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/config.xml -------------------------------------------------------------------------------- /hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/hooks/README.md -------------------------------------------------------------------------------- /hooks/after_platform_add/install_plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/hooks/after_platform_add/install_plugins.js -------------------------------------------------------------------------------- /hooks/after_plugin_add/register_plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/hooks/after_plugin_add/register_plugins.js -------------------------------------------------------------------------------- /hooks/after_plugin_rm/deregister_plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/hooks/after_plugin_rm/deregister_plugins.js -------------------------------------------------------------------------------- /hooks/after_prepare/010_add_platform_class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/hooks/after_prepare/010_add_platform_class.js -------------------------------------------------------------------------------- /hooks/after_prepare/icons_and_splashscreens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/hooks/after_prepare/icons_and_splashscreens.js -------------------------------------------------------------------------------- /hooks/before_platform_add/init_directories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/hooks/before_platform_add/init_directories.js -------------------------------------------------------------------------------- /ionic.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/ionic.project -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/package.json -------------------------------------------------------------------------------- /resources/android/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/resources/android/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /resources/android/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/resources/android/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /resources/android/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/resources/android/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /resources/android/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/resources/android/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /resources/android/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/resources/android/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /resources/android/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/resources/android/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /resources/android/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/resources/android/drawable/icon.png -------------------------------------------------------------------------------- /test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/test/.jshintrc -------------------------------------------------------------------------------- /test/spec/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/LovedOneNotifier/HEAD/test/spec/controllers.js --------------------------------------------------------------------------------