├── .DS_Store ├── .bowerrc ├── .gitignore ├── .idea ├── .name ├── jsLibraryMappings.xml ├── libraries │ └── simple_rest_ionic_node_modules.xml ├── misc.xml ├── modules.xml ├── simple-rest-ionic.iml ├── vcs.xml └── workspace.xml ├── README.md ├── bower.json ├── config.xml ├── gulpfile.js ├── hooks ├── README.md ├── after_platform_add │ └── 010_install_plugins.js ├── after_plugin_add │ └── 010_register_plugin.js ├── after_plugin_rm │ └── 010_deregister_plugin.js ├── after_prepare │ ├── 010_add_platform_class.js │ └── 020_remove_sass_from_platforms.js └── before_platform_add │ └── init_directories.js ├── ionic.project ├── package.json ├── scss └── ionic.app.scss └── www ├── .DS_Store ├── css ├── ionic.app.css ├── ionic.app.min.css └── style.css ├── img └── ionic.png ├── index.html ├── js ├── .DS_Store ├── app.js ├── controllers.js └── services.js └── templates ├── tab-dashboard.html ├── tab-login.html └── tabs.html /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/.DS_Store -------------------------------------------------------------------------------- /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "www/lib" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | simple-rest-ionic -------------------------------------------------------------------------------- /.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /.idea/libraries/simple_rest_ionic_node_modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/.idea/libraries/simple_rest_ionic_node_modules.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/simple-rest-ionic.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/.idea/simple-rest-ionic.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/bower.json -------------------------------------------------------------------------------- /config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/config.xml -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/gulpfile.js -------------------------------------------------------------------------------- /hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/hooks/README.md -------------------------------------------------------------------------------- /hooks/after_platform_add/010_install_plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/hooks/after_platform_add/010_install_plugins.js -------------------------------------------------------------------------------- /hooks/after_plugin_add/010_register_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/hooks/after_plugin_add/010_register_plugin.js -------------------------------------------------------------------------------- /hooks/after_plugin_rm/010_deregister_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/hooks/after_plugin_rm/010_deregister_plugin.js -------------------------------------------------------------------------------- /hooks/after_prepare/010_add_platform_class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/hooks/after_prepare/010_add_platform_class.js -------------------------------------------------------------------------------- /hooks/after_prepare/020_remove_sass_from_platforms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/hooks/after_prepare/020_remove_sass_from_platforms.js -------------------------------------------------------------------------------- /hooks/before_platform_add/init_directories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/hooks/before_platform_add/init_directories.js -------------------------------------------------------------------------------- /ionic.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/ionic.project -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/package.json -------------------------------------------------------------------------------- /scss/ionic.app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/scss/ionic.app.scss -------------------------------------------------------------------------------- /www/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/www/.DS_Store -------------------------------------------------------------------------------- /www/css/ionic.app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/www/css/ionic.app.css -------------------------------------------------------------------------------- /www/css/ionic.app.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/www/css/ionic.app.min.css -------------------------------------------------------------------------------- /www/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/www/css/style.css -------------------------------------------------------------------------------- /www/img/ionic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/www/img/ionic.png -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/www/index.html -------------------------------------------------------------------------------- /www/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/www/js/.DS_Store -------------------------------------------------------------------------------- /www/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/www/js/app.js -------------------------------------------------------------------------------- /www/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/www/js/controllers.js -------------------------------------------------------------------------------- /www/js/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/www/js/services.js -------------------------------------------------------------------------------- /www/templates/tab-dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/www/templates/tab-dashboard.html -------------------------------------------------------------------------------- /www/templates/tab-login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/www/templates/tab-login.html -------------------------------------------------------------------------------- /www/templates/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backand/simple-rest-ionic/HEAD/www/templates/tabs.html --------------------------------------------------------------------------------