├── .gitignore ├── 01-code-editor-tutorial ├── Finished-Items.page-controller.js ├── README.md ├── Todo-Item.page-controller.js ├── Todos.page-controller.js └── todos.js ├── 02-beautiful-side-menus ├── README.md ├── directives.js └── theme.scss ├── 03-working-with-form-data ├── Order-Confirmation.page-controller.js ├── Order-Your-Pizza.page-controller.js └── README.md ├── 06-working-with-html-pages ├── Cat-Pictures.template.html └── README.md ├── 07-using-apis-with-angular-http ├── README.md ├── Survey.page-controller.js └── services.js ├── 08-using-apis-with-angular-http-part2 ├── README.md ├── Results.page-controller.js ├── Search.page-controller.js ├── Survey.page-controller.js └── services.js ├── 09-toggling-content ├── ButtonBar.page-controller.js ├── README.md └── Toggle.page-controller.js ├── 10-making-a-searchable-video-library ├── README.md ├── Tutorial.page-controller.js ├── Tutorials.page-controller.js └── tutorials.js └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.ds_store -------------------------------------------------------------------------------- /01-code-editor-tutorial/Finished-Items.page-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/01-code-editor-tutorial/Finished-Items.page-controller.js -------------------------------------------------------------------------------- /01-code-editor-tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/01-code-editor-tutorial/README.md -------------------------------------------------------------------------------- /01-code-editor-tutorial/Todo-Item.page-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/01-code-editor-tutorial/Todo-Item.page-controller.js -------------------------------------------------------------------------------- /01-code-editor-tutorial/Todos.page-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/01-code-editor-tutorial/Todos.page-controller.js -------------------------------------------------------------------------------- /01-code-editor-tutorial/todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/01-code-editor-tutorial/todos.js -------------------------------------------------------------------------------- /02-beautiful-side-menus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/02-beautiful-side-menus/README.md -------------------------------------------------------------------------------- /02-beautiful-side-menus/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/02-beautiful-side-menus/directives.js -------------------------------------------------------------------------------- /02-beautiful-side-menus/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/02-beautiful-side-menus/theme.scss -------------------------------------------------------------------------------- /03-working-with-form-data/Order-Confirmation.page-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/03-working-with-form-data/Order-Confirmation.page-controller.js -------------------------------------------------------------------------------- /03-working-with-form-data/Order-Your-Pizza.page-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/03-working-with-form-data/Order-Your-Pizza.page-controller.js -------------------------------------------------------------------------------- /03-working-with-form-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/03-working-with-form-data/README.md -------------------------------------------------------------------------------- /06-working-with-html-pages/Cat-Pictures.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/06-working-with-html-pages/Cat-Pictures.template.html -------------------------------------------------------------------------------- /06-working-with-html-pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/06-working-with-html-pages/README.md -------------------------------------------------------------------------------- /07-using-apis-with-angular-http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/07-using-apis-with-angular-http/README.md -------------------------------------------------------------------------------- /07-using-apis-with-angular-http/Survey.page-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/07-using-apis-with-angular-http/Survey.page-controller.js -------------------------------------------------------------------------------- /07-using-apis-with-angular-http/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/07-using-apis-with-angular-http/services.js -------------------------------------------------------------------------------- /08-using-apis-with-angular-http-part2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/08-using-apis-with-angular-http-part2/README.md -------------------------------------------------------------------------------- /08-using-apis-with-angular-http-part2/Results.page-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/08-using-apis-with-angular-http-part2/Results.page-controller.js -------------------------------------------------------------------------------- /08-using-apis-with-angular-http-part2/Search.page-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/08-using-apis-with-angular-http-part2/Search.page-controller.js -------------------------------------------------------------------------------- /08-using-apis-with-angular-http-part2/Survey.page-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/08-using-apis-with-angular-http-part2/Survey.page-controller.js -------------------------------------------------------------------------------- /08-using-apis-with-angular-http-part2/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/08-using-apis-with-angular-http-part2/services.js -------------------------------------------------------------------------------- /09-toggling-content/ButtonBar.page-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/09-toggling-content/ButtonBar.page-controller.js -------------------------------------------------------------------------------- /09-toggling-content/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/09-toggling-content/README.md -------------------------------------------------------------------------------- /09-toggling-content/Toggle.page-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/09-toggling-content/Toggle.page-controller.js -------------------------------------------------------------------------------- /10-making-a-searchable-video-library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/10-making-a-searchable-video-library/README.md -------------------------------------------------------------------------------- /10-making-a-searchable-video-library/Tutorial.page-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/10-making-a-searchable-video-library/Tutorial.page-controller.js -------------------------------------------------------------------------------- /10-making-a-searchable-video-library/Tutorials.page-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/10-making-a-searchable-video-library/Tutorials.page-controller.js -------------------------------------------------------------------------------- /10-making-a-searchable-video-library/tutorials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/10-making-a-searchable-video-library/tutorials.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/creator-weekly-workshops/HEAD/README.md --------------------------------------------------------------------------------