├── .gitignore ├── 10thMay2015 ├── .idea │ ├── .name │ ├── 10thMay2015.iml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml └── AngularJSModuleComponents │ ├── bower_components │ └── angularjs │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-csp.css │ │ ├── angular.js │ │ ├── angular.min.js │ │ ├── angular.min.js.gzip │ │ ├── angular.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ ├── demoFactories │ ├── index.html │ └── index.js │ └── demoServices │ ├── index.html │ └── index.js ├── 12thApril2015 ├── .idea │ ├── .name │ ├── 12thApril2015.iml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml ├── EventBubbling │ ├── eventsBubbling.html │ └── eventsBubbling.js ├── bower.json ├── bower_components │ └── angularjs │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-csp.css │ │ ├── angular.js │ │ ├── angular.min.js │ │ ├── angular.min.js.gzip │ │ ├── angular.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json ├── controllerInheritence │ ├── Inheritence.js │ └── index.html └── events │ ├── event.html │ └── event.js ├── 12thJuly2015 ├── .idea │ ├── .name │ ├── 12thJuly2015.iml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml ├── bower.json ├── bower_components │ └── angularjs │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-csp.css │ │ ├── angular.js │ │ ├── angular.min.js │ │ ├── angular.min.js.gzip │ │ ├── angular.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json ├── customDirectives101 │ ├── index.html │ └── index.js └── customDirectives201 │ ├── index.html │ ├── index.js │ └── templates │ └── messageBox.tpl.html ├── 17thMay2015 ├── .idea │ ├── .name │ ├── 17thMay2015.iml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml ├── DemoControllerAsSyntax │ ├── index.html │ └── index.js ├── DemoNewRouter │ ├── components │ │ ├── about_us │ │ │ ├── about_us.html │ │ │ └── about_us.js │ │ └── home │ │ │ ├── home.html │ │ │ └── home.js │ ├── index.html │ └── index.js ├── bower.json └── bower_components │ ├── angular-new-router │ ├── .bower.json │ ├── .bowerrc │ ├── .editorconfig │ ├── .gitignore │ ├── .npmignore │ ├── .travis.yml │ ├── ARCHITECTURE.md │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── DOCUMENTATION.md │ ├── LICENSE │ ├── README.md │ ├── chromedriver │ │ ├── README │ │ ├── chromedriver_linux.zip │ │ ├── chromedriver_mac.zip │ │ ├── chromedriver_shadow_dom.patch │ │ └── selenium_shadow_dom.patch │ ├── config.json │ ├── config │ │ ├── karma.sauce.conf.js │ │ └── karma.travis.conf.js │ ├── docs │ │ ├── content │ │ │ ├── configuration.md │ │ │ ├── getting-started.md │ │ │ └── lifecycle.md │ │ ├── dgeni.conf.js │ │ ├── file-readers │ │ │ └── markdown.js │ │ ├── highlight.css │ │ ├── processors │ │ │ ├── addMethodsToService.js │ │ │ ├── generateIndexPage.js │ │ │ └── markdown.js │ │ ├── rendering │ │ │ ├── docTypeLabel.js │ │ │ └── relativeLinkInlineTag.js │ │ ├── style.css │ │ ├── templates │ │ │ ├── index.template.html │ │ │ ├── js.template.html │ │ │ ├── layout │ │ │ │ └── base.template.html │ │ │ └── markdown.template.html │ │ └── traceur-package │ │ │ ├── index.js │ │ │ ├── processors │ │ │ ├── generateDocsFromComments.js │ │ │ ├── processClassDocs.js │ │ │ └── processModuleDocs.js │ │ │ ├── readers │ │ │ ├── atScript.js │ │ │ └── atScript.spec.js │ │ │ ├── services │ │ │ ├── AttachCommentTreeVisitor.js │ │ │ ├── ExportTreeVisitor.js │ │ │ ├── atParser.js │ │ │ ├── atParser.spec.js │ │ │ ├── getJSDocComment.js │ │ │ ├── getJSDocComment.spec.js │ │ │ └── traceur.js │ │ │ └── templates │ │ │ ├── class.template.html │ │ │ ├── common.template.html │ │ │ ├── data-module.template.js │ │ │ ├── layout │ │ │ └── base.template.html │ │ │ └── module.template.html │ ├── examples │ │ └── angular-1 │ │ │ ├── animation │ │ │ ├── app.css │ │ │ ├── app.js │ │ │ ├── components │ │ │ │ ├── goodbye │ │ │ │ │ ├── goodbye.html │ │ │ │ │ └── goodbye.js │ │ │ │ └── welcome │ │ │ │ │ ├── welcome.html │ │ │ │ │ └── welcome.js │ │ │ ├── index.html │ │ │ └── scenario.js │ │ │ ├── confirm-unsaved │ │ │ ├── app.js │ │ │ ├── components │ │ │ │ ├── edit-post │ │ │ │ │ ├── edit-post.html │ │ │ │ │ └── edit-post.js │ │ │ │ ├── index │ │ │ │ │ ├── index.html │ │ │ │ │ └── index.js │ │ │ │ └── save-modal │ │ │ │ │ ├── save-modal.css │ │ │ │ │ ├── save-modal.html │ │ │ │ │ └── save-modal.js │ │ │ ├── index.html │ │ │ └── scenario.js │ │ │ ├── hello │ │ │ ├── app.js │ │ │ ├── components │ │ │ │ ├── flickr │ │ │ │ │ ├── flickr.html │ │ │ │ │ └── flickr.js │ │ │ │ ├── settings │ │ │ │ │ ├── settings.html │ │ │ │ │ └── settings.js │ │ │ │ └── welcome │ │ │ │ │ ├── welcome.html │ │ │ │ │ └── welcome.js │ │ │ ├── index.html │ │ │ └── scenario.js │ │ │ ├── phone-kitten │ │ │ ├── app.js │ │ │ ├── components │ │ │ │ ├── phone-detail │ │ │ │ │ ├── phone-detail.html │ │ │ │ │ └── phone-detail.js │ │ │ │ └── phone-list │ │ │ │ │ ├── phone-list.html │ │ │ │ │ └── phone-list.js │ │ │ ├── css │ │ │ │ ├── .gitkeep │ │ │ │ ├── animations.css │ │ │ │ ├── app.css │ │ │ │ └── bootstrap.css │ │ │ ├── img │ │ │ │ ├── .gitkeep │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ └── phones │ │ │ │ │ ├── dell-streak-7.0.jpg │ │ │ │ │ ├── dell-streak-7.1.jpg │ │ │ │ │ ├── dell-streak-7.2.jpg │ │ │ │ │ ├── dell-streak-7.3.jpg │ │ │ │ │ ├── dell-streak-7.4.jpg │ │ │ │ │ ├── dell-venue.0.jpg │ │ │ │ │ ├── dell-venue.1.jpg │ │ │ │ │ ├── dell-venue.2.jpg │ │ │ │ │ ├── dell-venue.3.jpg │ │ │ │ │ ├── dell-venue.4.jpg │ │ │ │ │ ├── dell-venue.5.jpg │ │ │ │ │ ├── droid-2-global-by-motorola.0.jpg │ │ │ │ │ ├── droid-2-global-by-motorola.1.jpg │ │ │ │ │ ├── droid-2-global-by-motorola.2.jpg │ │ │ │ │ ├── droid-pro-by-motorola.0.jpg │ │ │ │ │ ├── droid-pro-by-motorola.1.jpg │ │ │ │ │ ├── lg-axis.0.jpg │ │ │ │ │ ├── lg-axis.1.jpg │ │ │ │ │ ├── lg-axis.2.jpg │ │ │ │ │ ├── motorola-atrix-4g.0.jpg │ │ │ │ │ ├── motorola-atrix-4g.1.jpg │ │ │ │ │ ├── motorola-atrix-4g.2.jpg │ │ │ │ │ ├── motorola-atrix-4g.3.jpg │ │ │ │ │ ├── motorola-bravo-with-motoblur.0.jpg │ │ │ │ │ ├── motorola-bravo-with-motoblur.1.jpg │ │ │ │ │ ├── motorola-bravo-with-motoblur.2.jpg │ │ │ │ │ ├── motorola-charm-with-motoblur.0.jpg │ │ │ │ │ ├── motorola-charm-with-motoblur.1.jpg │ │ │ │ │ ├── motorola-charm-with-motoblur.2.jpg │ │ │ │ │ ├── motorola-defy-with-motoblur.0.jpg │ │ │ │ │ ├── motorola-defy-with-motoblur.1.jpg │ │ │ │ │ ├── motorola-defy-with-motoblur.2.jpg │ │ │ │ │ ├── motorola-xoom-with-wi-fi.0.jpg │ │ │ │ │ ├── motorola-xoom-with-wi-fi.1.jpg │ │ │ │ │ ├── motorola-xoom-with-wi-fi.2.jpg │ │ │ │ │ ├── motorola-xoom-with-wi-fi.3.jpg │ │ │ │ │ ├── motorola-xoom-with-wi-fi.4.jpg │ │ │ │ │ ├── motorola-xoom-with-wi-fi.5.jpg │ │ │ │ │ ├── motorola-xoom.0.jpg │ │ │ │ │ ├── motorola-xoom.1.jpg │ │ │ │ │ ├── motorola-xoom.2.jpg │ │ │ │ │ ├── nexus-s.0.jpg │ │ │ │ │ ├── nexus-s.1.jpg │ │ │ │ │ ├── nexus-s.2.jpg │ │ │ │ │ ├── nexus-s.3.jpg │ │ │ │ │ ├── samsung-galaxy-tab.0.jpg │ │ │ │ │ ├── samsung-galaxy-tab.1.jpg │ │ │ │ │ ├── samsung-galaxy-tab.2.jpg │ │ │ │ │ ├── samsung-galaxy-tab.3.jpg │ │ │ │ │ ├── samsung-galaxy-tab.4.jpg │ │ │ │ │ ├── samsung-galaxy-tab.5.jpg │ │ │ │ │ ├── samsung-galaxy-tab.6.jpg │ │ │ │ │ ├── samsung-gem.0.jpg │ │ │ │ │ ├── samsung-gem.1.jpg │ │ │ │ │ ├── samsung-gem.2.jpg │ │ │ │ │ ├── samsung-mesmerize-a-galaxy-s-phone.0.jpg │ │ │ │ │ ├── samsung-mesmerize-a-galaxy-s-phone.1.jpg │ │ │ │ │ ├── samsung-mesmerize-a-galaxy-s-phone.2.jpg │ │ │ │ │ ├── samsung-mesmerize-a-galaxy-s-phone.3.jpg │ │ │ │ │ ├── samsung-showcase-a-galaxy-s-phone.0.jpg │ │ │ │ │ ├── samsung-showcase-a-galaxy-s-phone.1.jpg │ │ │ │ │ ├── samsung-showcase-a-galaxy-s-phone.2.jpg │ │ │ │ │ ├── samsung-transform.0.jpg │ │ │ │ │ ├── samsung-transform.1.jpg │ │ │ │ │ ├── samsung-transform.2.jpg │ │ │ │ │ ├── samsung-transform.3.jpg │ │ │ │ │ ├── samsung-transform.4.jpg │ │ │ │ │ ├── sanyo-zio.0.jpg │ │ │ │ │ ├── sanyo-zio.1.jpg │ │ │ │ │ ├── sanyo-zio.2.jpg │ │ │ │ │ ├── t-mobile-g2.0.jpg │ │ │ │ │ ├── t-mobile-g2.1.jpg │ │ │ │ │ ├── t-mobile-g2.2.jpg │ │ │ │ │ ├── t-mobile-mytouch-4g.0.jpg │ │ │ │ │ ├── t-mobile-mytouch-4g.1.jpg │ │ │ │ │ ├── t-mobile-mytouch-4g.2.jpg │ │ │ │ │ ├── t-mobile-mytouch-4g.3.jpg │ │ │ │ │ ├── t-mobile-mytouch-4g.4.jpg │ │ │ │ │ └── t-mobile-mytouch-4g.5.jpg │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── animations.js │ │ │ │ ├── filters.js │ │ │ │ └── services.js │ │ │ ├── phones │ │ │ │ ├── dell-streak-7.json │ │ │ │ ├── dell-venue.json │ │ │ │ ├── droid-2-global-by-motorola.json │ │ │ │ ├── droid-pro-by-motorola.json │ │ │ │ ├── lg-axis.json │ │ │ │ ├── motorola-atrix-4g.json │ │ │ │ ├── motorola-bravo-with-motoblur.json │ │ │ │ ├── motorola-charm-with-motoblur.json │ │ │ │ ├── motorola-defy-with-motoblur.json │ │ │ │ ├── motorola-xoom-with-wi-fi.json │ │ │ │ ├── motorola-xoom.json │ │ │ │ ├── nexus-s.json │ │ │ │ ├── phones.json │ │ │ │ ├── samsung-galaxy-tab.json │ │ │ │ ├── samsung-gem.json │ │ │ │ ├── samsung-mesmerize-a-galaxy-s-phone.json │ │ │ │ ├── samsung-showcase-a-galaxy-s-phone.json │ │ │ │ ├── samsung-transform.json │ │ │ │ ├── sanyo-zio.json │ │ │ │ ├── t-mobile-g2.json │ │ │ │ └── t-mobile-mytouch-4g.json │ │ │ └── scenario.js │ │ │ ├── sibbling-routes │ │ │ ├── app.css │ │ │ ├── app.js │ │ │ ├── components │ │ │ │ ├── posts │ │ │ │ │ └── posts.html │ │ │ │ └── users │ │ │ │ │ └── users.html │ │ │ └── index.html │ │ │ └── wizard │ │ │ ├── app.js │ │ │ ├── components │ │ │ ├── end │ │ │ │ ├── end.html │ │ │ │ └── end.js │ │ │ ├── intro │ │ │ │ ├── intro.html │ │ │ │ └── intro.js │ │ │ ├── one │ │ │ │ ├── one.html │ │ │ │ └── one.js │ │ │ ├── three │ │ │ │ ├── three.html │ │ │ │ └── three.js │ │ │ └── two │ │ │ │ ├── two.html │ │ │ │ └── two.js │ │ │ └── index.html │ ├── gulpfile.js │ ├── index.js │ ├── karma.conf.js │ ├── karma.es5.conf.js │ ├── package.json │ ├── protractor.conf.js │ ├── protractor.travis.conf.js │ ├── scripts │ │ ├── angular-modulate.js │ │ ├── deploy_docs_to_gh_pages.sh │ │ ├── lib │ │ │ └── traceur-runtime-custom.js │ │ ├── run_protractor_tests.sh │ │ ├── sauce_connect_setup.sh │ │ ├── test_on_sauce.sh │ │ └── wait_for_browser_provider.sh │ ├── src │ │ ├── grammar.ats │ │ ├── pipeline.ats │ │ ├── router-directive.es5.js │ │ └── router.ats │ └── test │ │ ├── component-loader.es5.spec.js │ │ ├── controller-introspector.es5.spec.js │ │ ├── main.js │ │ ├── pipeline.es5.spec.js │ │ ├── router-viewport.es5.spec.js │ │ ├── router.spec.ats │ │ └── util.es5.js │ └── angularjs │ ├── .bower.json │ ├── README.md │ ├── angular-csp.css │ ├── angular.js │ ├── angular.min.js │ ├── angular.min.js.gzip │ ├── angular.min.js.map │ ├── bower.json │ ├── index.js │ └── package.json ├── 19thApril2015 ├── .idea │ ├── .name │ ├── 19thApril2015.iml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml ├── DemoServices │ ├── bower.json │ ├── bower_components │ │ └── angularjs │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── angular-csp.css │ │ │ ├── angular.js │ │ │ ├── angular.min.js │ │ │ ├── angular.min.js.gzip │ │ │ ├── angular.min.js.map │ │ │ ├── bower.json │ │ │ ├── index.js │ │ │ └── package.json │ ├── demoService.js │ └── index.html └── demoAngularMaterial │ ├── bower.json │ ├── bower_components │ ├── angular-animate │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-animate.js │ │ ├── angular-animate.min.js │ │ ├── angular-animate.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ ├── angular-aria │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-aria.js │ │ ├── angular-aria.min.js │ │ ├── angular-aria.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ ├── angular-material │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── angular-material.css │ │ ├── angular-material.js │ │ ├── angular-material.min.css │ │ ├── angular-material.min.js │ │ ├── bower.json │ │ ├── demos │ │ │ ├── gridList │ │ │ │ ├── demoBasicUsage │ │ │ │ │ └── style.scss │ │ │ │ ├── demoDynamicTiles │ │ │ │ │ └── style.scss │ │ │ │ └── demoResponsiveUsage │ │ │ │ │ └── style.scss │ │ │ ├── icon │ │ │ │ ├── demoLoadSvgIconsFromUrl │ │ │ │ │ └── img │ │ │ │ │ │ └── icons │ │ │ │ │ │ ├── addShoppingCart.svg │ │ │ │ │ │ ├── android.svg │ │ │ │ │ │ └── cake.svg │ │ │ │ ├── demoSvgIconSets │ │ │ │ │ └── assets │ │ │ │ │ │ ├── cake.svg │ │ │ │ │ │ ├── core-icons.svg │ │ │ │ │ │ └── social-icons.svg │ │ │ │ ├── demoSvgIconsFromURL │ │ │ │ │ └── img │ │ │ │ │ │ └── icons │ │ │ │ │ │ ├── addShoppingCart.svg │ │ │ │ │ │ ├── android.svg │ │ │ │ │ │ └── cake.svg │ │ │ │ └── demoUsingTemplateCache │ │ │ │ │ └── assets │ │ │ │ │ ├── android.svg │ │ │ │ │ ├── cake.svg │ │ │ │ │ └── core-icons.svg │ │ │ └── input │ │ │ │ └── demoIcons │ │ │ │ ├── icons │ │ │ │ ├── ic_email_24px.svg │ │ │ │ ├── ic_person_24px.svg │ │ │ │ ├── ic_phone_24px.svg │ │ │ │ └── ic_place_24px.svg │ │ │ │ └── style.scss │ │ ├── index.js │ │ ├── modules │ │ │ ├── closure │ │ │ │ ├── autocomplete │ │ │ │ │ ├── autocomplete-default-theme.css │ │ │ │ │ ├── autocomplete.css │ │ │ │ │ └── autocomplete.js │ │ │ │ ├── backdrop │ │ │ │ │ ├── backdrop-default-theme.css │ │ │ │ │ ├── backdrop.css │ │ │ │ │ └── backdrop.js │ │ │ │ ├── bottomSheet │ │ │ │ │ ├── bottomSheet-default-theme.css │ │ │ │ │ ├── bottomSheet.css │ │ │ │ │ └── bottomSheet.js │ │ │ │ ├── button │ │ │ │ │ ├── button-default-theme.css │ │ │ │ │ ├── button.css │ │ │ │ │ └── button.js │ │ │ │ ├── card │ │ │ │ │ ├── card-default-theme.css │ │ │ │ │ ├── card.css │ │ │ │ │ └── card.js │ │ │ │ ├── checkbox │ │ │ │ │ ├── checkbox-default-theme.css │ │ │ │ │ ├── checkbox.css │ │ │ │ │ └── checkbox.js │ │ │ │ ├── content │ │ │ │ │ ├── content-default-theme.css │ │ │ │ │ ├── content.css │ │ │ │ │ └── content.js │ │ │ │ ├── core │ │ │ │ │ ├── core.css │ │ │ │ │ ├── core.js │ │ │ │ │ └── default-theme.js │ │ │ │ ├── dialog │ │ │ │ │ ├── dialog-default-theme.css │ │ │ │ │ ├── dialog.css │ │ │ │ │ └── dialog.js │ │ │ │ ├── divider │ │ │ │ │ ├── divider-default-theme.css │ │ │ │ │ ├── divider.css │ │ │ │ │ └── divider.js │ │ │ │ ├── gridList │ │ │ │ │ ├── gridList-default-theme.css │ │ │ │ │ ├── gridList.css │ │ │ │ │ └── gridList.js │ │ │ │ ├── icon │ │ │ │ │ ├── icon-default-theme.css │ │ │ │ │ ├── icon.css │ │ │ │ │ └── icon.js │ │ │ │ ├── input │ │ │ │ │ ├── input-default-theme.css │ │ │ │ │ ├── input.css │ │ │ │ │ └── input.js │ │ │ │ ├── list │ │ │ │ │ ├── list.css │ │ │ │ │ └── list.js │ │ │ │ ├── menu │ │ │ │ │ ├── menu.css │ │ │ │ │ └── menu.js │ │ │ │ ├── progressCircular │ │ │ │ │ ├── progressCircular-default-theme.css │ │ │ │ │ ├── progressCircular.css │ │ │ │ │ └── progressCircular.js │ │ │ │ ├── progressLinear │ │ │ │ │ ├── progressLinear-default-theme.css │ │ │ │ │ ├── progressLinear.css │ │ │ │ │ └── progressLinear.js │ │ │ │ ├── radioButton │ │ │ │ │ ├── radioButton-default-theme.css │ │ │ │ │ ├── radioButton.css │ │ │ │ │ └── radioButton.js │ │ │ │ ├── select │ │ │ │ │ ├── select-default-theme.css │ │ │ │ │ ├── select.css │ │ │ │ │ └── select.js │ │ │ │ ├── sidenav │ │ │ │ │ ├── sidenav-default-theme.css │ │ │ │ │ ├── sidenav.css │ │ │ │ │ └── sidenav.js │ │ │ │ ├── slider │ │ │ │ │ ├── slider-default-theme.css │ │ │ │ │ ├── slider.css │ │ │ │ │ └── slider.js │ │ │ │ ├── sticky │ │ │ │ │ ├── sticky.css │ │ │ │ │ └── sticky.js │ │ │ │ ├── subheader │ │ │ │ │ ├── subheader-default-theme.css │ │ │ │ │ ├── subheader.css │ │ │ │ │ └── subheader.js │ │ │ │ ├── swipe │ │ │ │ │ └── swipe.js │ │ │ │ ├── switch │ │ │ │ │ ├── switch-default-theme.css │ │ │ │ │ ├── switch.css │ │ │ │ │ └── switch.js │ │ │ │ ├── tabs │ │ │ │ │ ├── tabs-arrow.svg │ │ │ │ │ ├── tabs-default-theme.css │ │ │ │ │ ├── tabs.css │ │ │ │ │ └── tabs.js │ │ │ │ ├── textField │ │ │ │ │ ├── textField-default-theme.css │ │ │ │ │ ├── textField.css │ │ │ │ │ └── textField.js │ │ │ │ ├── toast │ │ │ │ │ ├── toast-default-theme.css │ │ │ │ │ ├── toast.css │ │ │ │ │ └── toast.js │ │ │ │ ├── toolbar │ │ │ │ │ ├── toolbar-default-theme.css │ │ │ │ │ ├── toolbar.css │ │ │ │ │ └── toolbar.js │ │ │ │ ├── tooltip │ │ │ │ │ ├── tooltip-default-theme.css │ │ │ │ │ ├── tooltip.css │ │ │ │ │ └── tooltip.js │ │ │ │ └── whiteframe │ │ │ │ │ ├── whiteframe.css │ │ │ │ │ └── whiteframe.js │ │ │ ├── css │ │ │ │ └── angular-material-layout.css │ │ │ └── js │ │ │ │ ├── autocomplete │ │ │ │ ├── autocomplete-default-theme.css │ │ │ │ ├── autocomplete-default-theme.min.css │ │ │ │ ├── autocomplete.css │ │ │ │ ├── autocomplete.js │ │ │ │ ├── autocomplete.min.css │ │ │ │ ├── autocomplete.min.js │ │ │ │ └── bower.json │ │ │ │ ├── backdrop │ │ │ │ ├── backdrop-default-theme.css │ │ │ │ ├── backdrop-default-theme.min.css │ │ │ │ ├── backdrop.css │ │ │ │ ├── backdrop.js │ │ │ │ ├── backdrop.min.css │ │ │ │ ├── backdrop.min.js │ │ │ │ └── bower.json │ │ │ │ ├── bottomSheet │ │ │ │ ├── bottomSheet-default-theme.css │ │ │ │ ├── bottomSheet-default-theme.min.css │ │ │ │ ├── bottomSheet.css │ │ │ │ ├── bottomSheet.js │ │ │ │ ├── bottomSheet.min.css │ │ │ │ ├── bottomSheet.min.js │ │ │ │ └── bower.json │ │ │ │ ├── button │ │ │ │ ├── bower.json │ │ │ │ ├── button-default-theme.css │ │ │ │ ├── button-default-theme.min.css │ │ │ │ ├── button.css │ │ │ │ ├── button.js │ │ │ │ ├── button.min.css │ │ │ │ └── button.min.js │ │ │ │ ├── card │ │ │ │ ├── bower.json │ │ │ │ ├── card-default-theme.css │ │ │ │ ├── card-default-theme.min.css │ │ │ │ ├── card.css │ │ │ │ ├── card.js │ │ │ │ ├── card.min.css │ │ │ │ └── card.min.js │ │ │ │ ├── checkbox │ │ │ │ ├── bower.json │ │ │ │ ├── checkbox-default-theme.css │ │ │ │ ├── checkbox-default-theme.min.css │ │ │ │ ├── checkbox.css │ │ │ │ ├── checkbox.js │ │ │ │ ├── checkbox.min.css │ │ │ │ └── checkbox.min.js │ │ │ │ ├── content │ │ │ │ ├── bower.json │ │ │ │ ├── content-default-theme.css │ │ │ │ ├── content-default-theme.min.css │ │ │ │ ├── content.css │ │ │ │ ├── content.js │ │ │ │ ├── content.min.css │ │ │ │ └── content.min.js │ │ │ │ ├── core │ │ │ │ ├── bower.json │ │ │ │ ├── core.css │ │ │ │ ├── core.js │ │ │ │ ├── core.min.css │ │ │ │ ├── core.min.js │ │ │ │ └── default-theme.js │ │ │ │ ├── dialog │ │ │ │ ├── bower.json │ │ │ │ ├── dialog-default-theme.css │ │ │ │ ├── dialog-default-theme.min.css │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog.js │ │ │ │ ├── dialog.min.css │ │ │ │ └── dialog.min.js │ │ │ │ ├── divider │ │ │ │ ├── bower.json │ │ │ │ ├── divider-default-theme.css │ │ │ │ ├── divider-default-theme.min.css │ │ │ │ ├── divider.css │ │ │ │ ├── divider.js │ │ │ │ ├── divider.min.css │ │ │ │ └── divider.min.js │ │ │ │ ├── icon │ │ │ │ ├── bower.json │ │ │ │ ├── icon.css │ │ │ │ ├── icon.js │ │ │ │ ├── icon.min.css │ │ │ │ └── icon.min.js │ │ │ │ ├── input │ │ │ │ ├── bower.json │ │ │ │ ├── input-default-theme.css │ │ │ │ ├── input-default-theme.min.css │ │ │ │ ├── input.css │ │ │ │ ├── input.js │ │ │ │ ├── input.min.css │ │ │ │ └── input.min.js │ │ │ │ ├── list │ │ │ │ ├── bower.json │ │ │ │ ├── list.css │ │ │ │ ├── list.js │ │ │ │ ├── list.min.css │ │ │ │ └── list.min.js │ │ │ │ ├── menu │ │ │ │ ├── bower.json │ │ │ │ ├── menu.css │ │ │ │ ├── menu.js │ │ │ │ ├── menu.min.css │ │ │ │ └── menu.min.js │ │ │ │ ├── progressCircular │ │ │ │ ├── bower.json │ │ │ │ ├── progressCircular-default-theme.css │ │ │ │ ├── progressCircular-default-theme.min.css │ │ │ │ ├── progressCircular.css │ │ │ │ ├── progressCircular.js │ │ │ │ ├── progressCircular.min.css │ │ │ │ └── progressCircular.min.js │ │ │ │ ├── progressLinear │ │ │ │ ├── bower.json │ │ │ │ ├── progressLinear-default-theme.css │ │ │ │ ├── progressLinear-default-theme.min.css │ │ │ │ ├── progressLinear.css │ │ │ │ ├── progressLinear.js │ │ │ │ ├── progressLinear.min.css │ │ │ │ └── progressLinear.min.js │ │ │ │ ├── radioButton │ │ │ │ ├── bower.json │ │ │ │ ├── radioButton-default-theme.css │ │ │ │ ├── radioButton-default-theme.min.css │ │ │ │ ├── radioButton.css │ │ │ │ ├── radioButton.js │ │ │ │ ├── radioButton.min.css │ │ │ │ └── radioButton.min.js │ │ │ │ ├── sidenav │ │ │ │ ├── bower.json │ │ │ │ ├── sidenav-default-theme.css │ │ │ │ ├── sidenav-default-theme.min.css │ │ │ │ ├── sidenav.css │ │ │ │ ├── sidenav.js │ │ │ │ ├── sidenav.min.css │ │ │ │ └── sidenav.min.js │ │ │ │ ├── slider │ │ │ │ ├── bower.json │ │ │ │ ├── slider-default-theme.css │ │ │ │ ├── slider-default-theme.min.css │ │ │ │ ├── slider.css │ │ │ │ ├── slider.js │ │ │ │ ├── slider.min.css │ │ │ │ └── slider.min.js │ │ │ │ ├── sticky │ │ │ │ ├── bower.json │ │ │ │ ├── sticky.css │ │ │ │ ├── sticky.js │ │ │ │ ├── sticky.min.css │ │ │ │ └── sticky.min.js │ │ │ │ ├── subheader │ │ │ │ ├── bower.json │ │ │ │ ├── subheader-default-theme.css │ │ │ │ ├── subheader-default-theme.min.css │ │ │ │ ├── subheader.css │ │ │ │ ├── subheader.js │ │ │ │ ├── subheader.min.css │ │ │ │ └── subheader.min.js │ │ │ │ ├── swipe │ │ │ │ ├── bower.json │ │ │ │ ├── swipe.js │ │ │ │ └── swipe.min.js │ │ │ │ ├── switch │ │ │ │ ├── bower.json │ │ │ │ ├── switch-default-theme.css │ │ │ │ ├── switch-default-theme.min.css │ │ │ │ ├── switch.css │ │ │ │ ├── switch.js │ │ │ │ ├── switch.min.css │ │ │ │ └── switch.min.js │ │ │ │ ├── tabs │ │ │ │ ├── bower.json │ │ │ │ ├── tabs-default-theme.css │ │ │ │ ├── tabs-default-theme.min.css │ │ │ │ ├── tabs.css │ │ │ │ ├── tabs.js │ │ │ │ ├── tabs.min.css │ │ │ │ └── tabs.min.js │ │ │ │ ├── textField │ │ │ │ ├── bower.json │ │ │ │ ├── textField-default-theme.css │ │ │ │ ├── textField-default-theme.min.css │ │ │ │ ├── textField.css │ │ │ │ ├── textField.js │ │ │ │ ├── textField.min.css │ │ │ │ └── textField.min.js │ │ │ │ ├── toast │ │ │ │ ├── bower.json │ │ │ │ ├── toast-default-theme.css │ │ │ │ ├── toast-default-theme.min.css │ │ │ │ ├── toast.css │ │ │ │ ├── toast.js │ │ │ │ ├── toast.min.css │ │ │ │ └── toast.min.js │ │ │ │ ├── toolbar │ │ │ │ ├── bower.json │ │ │ │ ├── toolbar-default-theme.css │ │ │ │ ├── toolbar-default-theme.min.css │ │ │ │ ├── toolbar.css │ │ │ │ ├── toolbar.js │ │ │ │ ├── toolbar.min.css │ │ │ │ └── toolbar.min.js │ │ │ │ ├── tooltip │ │ │ │ ├── bower.json │ │ │ │ ├── tooltip-default-theme.css │ │ │ │ ├── tooltip-default-theme.min.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── tooltip.js │ │ │ │ ├── tooltip.min.css │ │ │ │ └── tooltip.min.js │ │ │ │ └── whiteframe │ │ │ │ ├── bower.json │ │ │ │ ├── whiteframe.css │ │ │ │ ├── whiteframe.js │ │ │ │ ├── whiteframe.min.css │ │ │ │ └── whiteframe.min.js │ │ └── package.json │ └── angular │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-csp.css │ │ ├── angular.js │ │ ├── angular.min.js │ │ ├── angular.min.js.gzip │ │ ├── angular.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ ├── demoNGMaterial.js │ └── index.html ├── 21stJune2015 ├── .idea │ ├── .name │ ├── 21stJune2015.iml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml ├── bower.json ├── bower_components │ ├── angular │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-csp.css │ │ ├── angular.js │ │ ├── angular.min.js │ │ ├── angular.min.js.gzip │ │ ├── angular.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ ├── angularfire │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── angularfire.js │ │ │ └── angularfire.min.js │ │ └── index.js │ └── firebase │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── firebase-debug.js │ │ └── firebase.js └── demoFirebase1 │ ├── demoFirebase1.js │ └── index.html ├── 24thMay2015 ├── .idea │ ├── .name │ ├── 24thMay2015.iml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml ├── DemoFirebaseAuthentication │ ├── index.html │ ├── index.js │ └── service_user.js ├── bower.json └── bower_components │ ├── angular │ ├── .bower.json │ ├── README.md │ ├── angular-csp.css │ ├── angular.js │ ├── angular.min.js │ ├── angular.min.js.gzip │ ├── angular.min.js.map │ ├── bower.json │ ├── index.js │ └── package.json │ ├── angularfire │ ├── .bower.json │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── angularfire.js │ │ └── angularfire.min.js │ └── index.js │ ├── angularjs │ ├── .bower.json │ ├── README.md │ ├── angular-csp.css │ ├── angular.js │ ├── angular.min.js │ ├── angular.min.js.gzip │ ├── angular.min.js.map │ ├── bower.json │ ├── index.js │ └── package.json │ └── firebase │ ├── .bower.json │ ├── README.md │ ├── bower.json │ ├── firebase-debug.js │ └── firebase.js ├── 26thApril2015 ├── .idea │ ├── .name │ ├── 26thApril2015.iml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml └── demoAngularFire │ ├── READ_ME.md │ ├── bower_components │ ├── angular-animate │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-animate.js │ │ ├── angular-animate.min.js │ │ ├── angular-animate.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ ├── angular-aria │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-aria.js │ │ ├── angular-aria.min.js │ │ ├── angular-aria.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ ├── angular-material │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── angular-material.css │ │ ├── angular-material.js │ │ ├── angular-material.min.css │ │ ├── angular-material.min.js │ │ ├── bower.json │ │ ├── demos │ │ │ ├── gridList │ │ │ │ ├── demoBasicUsage │ │ │ │ │ └── style.scss │ │ │ │ ├── demoDynamicTiles │ │ │ │ │ └── style.scss │ │ │ │ └── demoResponsiveUsage │ │ │ │ │ └── style.scss │ │ │ ├── icon │ │ │ │ ├── demoLoadSvgIconsFromUrl │ │ │ │ │ └── img │ │ │ │ │ │ └── icons │ │ │ │ │ │ ├── addShoppingCart.svg │ │ │ │ │ │ ├── android.svg │ │ │ │ │ │ └── cake.svg │ │ │ │ ├── demoSvgIconSets │ │ │ │ │ └── assets │ │ │ │ │ │ ├── cake.svg │ │ │ │ │ │ ├── core-icons.svg │ │ │ │ │ │ └── social-icons.svg │ │ │ │ ├── demoSvgIconsFromURL │ │ │ │ │ └── img │ │ │ │ │ │ └── icons │ │ │ │ │ │ ├── addShoppingCart.svg │ │ │ │ │ │ ├── android.svg │ │ │ │ │ │ └── cake.svg │ │ │ │ └── demoUsingTemplateCache │ │ │ │ │ └── assets │ │ │ │ │ ├── android.svg │ │ │ │ │ ├── cake.svg │ │ │ │ │ └── core-icons.svg │ │ │ └── input │ │ │ │ └── demoIcons │ │ │ │ ├── icons │ │ │ │ ├── ic_email_24px.svg │ │ │ │ ├── ic_person_24px.svg │ │ │ │ ├── ic_phone_24px.svg │ │ │ │ └── ic_place_24px.svg │ │ │ │ └── style.scss │ │ ├── index.js │ │ ├── modules │ │ │ ├── closure │ │ │ │ ├── autocomplete │ │ │ │ │ ├── autocomplete-default-theme.css │ │ │ │ │ ├── autocomplete.css │ │ │ │ │ └── autocomplete.js │ │ │ │ ├── backdrop │ │ │ │ │ ├── backdrop-default-theme.css │ │ │ │ │ ├── backdrop.css │ │ │ │ │ └── backdrop.js │ │ │ │ ├── bottomSheet │ │ │ │ │ ├── bottomSheet-default-theme.css │ │ │ │ │ ├── bottomSheet.css │ │ │ │ │ └── bottomSheet.js │ │ │ │ ├── button │ │ │ │ │ ├── button-default-theme.css │ │ │ │ │ ├── button.css │ │ │ │ │ └── button.js │ │ │ │ ├── card │ │ │ │ │ ├── card-default-theme.css │ │ │ │ │ ├── card.css │ │ │ │ │ └── card.js │ │ │ │ ├── checkbox │ │ │ │ │ ├── checkbox-default-theme.css │ │ │ │ │ ├── checkbox.css │ │ │ │ │ └── checkbox.js │ │ │ │ ├── content │ │ │ │ │ ├── content-default-theme.css │ │ │ │ │ ├── content.css │ │ │ │ │ └── content.js │ │ │ │ ├── core │ │ │ │ │ ├── core.css │ │ │ │ │ ├── core.js │ │ │ │ │ └── default-theme.js │ │ │ │ ├── dialog │ │ │ │ │ ├── dialog-default-theme.css │ │ │ │ │ ├── dialog.css │ │ │ │ │ └── dialog.js │ │ │ │ ├── divider │ │ │ │ │ ├── divider-default-theme.css │ │ │ │ │ ├── divider.css │ │ │ │ │ └── divider.js │ │ │ │ ├── gridList │ │ │ │ │ ├── gridList-default-theme.css │ │ │ │ │ ├── gridList.css │ │ │ │ │ └── gridList.js │ │ │ │ ├── icon │ │ │ │ │ ├── icon-default-theme.css │ │ │ │ │ ├── icon.css │ │ │ │ │ └── icon.js │ │ │ │ ├── input │ │ │ │ │ ├── input-default-theme.css │ │ │ │ │ ├── input.css │ │ │ │ │ └── input.js │ │ │ │ ├── list │ │ │ │ │ ├── list.css │ │ │ │ │ └── list.js │ │ │ │ ├── menu │ │ │ │ │ ├── menu.css │ │ │ │ │ └── menu.js │ │ │ │ ├── progressCircular │ │ │ │ │ ├── progressCircular-default-theme.css │ │ │ │ │ ├── progressCircular.css │ │ │ │ │ └── progressCircular.js │ │ │ │ ├── progressLinear │ │ │ │ │ ├── progressLinear-default-theme.css │ │ │ │ │ ├── progressLinear.css │ │ │ │ │ └── progressLinear.js │ │ │ │ ├── radioButton │ │ │ │ │ ├── radioButton-default-theme.css │ │ │ │ │ ├── radioButton.css │ │ │ │ │ └── radioButton.js │ │ │ │ ├── select │ │ │ │ │ ├── select-default-theme.css │ │ │ │ │ ├── select.css │ │ │ │ │ └── select.js │ │ │ │ ├── sidenav │ │ │ │ │ ├── sidenav-default-theme.css │ │ │ │ │ ├── sidenav.css │ │ │ │ │ └── sidenav.js │ │ │ │ ├── slider │ │ │ │ │ ├── slider-default-theme.css │ │ │ │ │ ├── slider.css │ │ │ │ │ └── slider.js │ │ │ │ ├── sticky │ │ │ │ │ ├── sticky.css │ │ │ │ │ └── sticky.js │ │ │ │ ├── subheader │ │ │ │ │ ├── subheader-default-theme.css │ │ │ │ │ ├── subheader.css │ │ │ │ │ └── subheader.js │ │ │ │ ├── swipe │ │ │ │ │ └── swipe.js │ │ │ │ ├── switch │ │ │ │ │ ├── switch-default-theme.css │ │ │ │ │ ├── switch.css │ │ │ │ │ └── switch.js │ │ │ │ ├── tabs │ │ │ │ │ ├── tabs-arrow.svg │ │ │ │ │ ├── tabs-default-theme.css │ │ │ │ │ ├── tabs.css │ │ │ │ │ └── tabs.js │ │ │ │ ├── textField │ │ │ │ │ ├── textField-default-theme.css │ │ │ │ │ ├── textField.css │ │ │ │ │ └── textField.js │ │ │ │ ├── toast │ │ │ │ │ ├── toast-default-theme.css │ │ │ │ │ ├── toast.css │ │ │ │ │ └── toast.js │ │ │ │ ├── toolbar │ │ │ │ │ ├── toolbar-default-theme.css │ │ │ │ │ ├── toolbar.css │ │ │ │ │ └── toolbar.js │ │ │ │ ├── tooltip │ │ │ │ │ ├── tooltip-default-theme.css │ │ │ │ │ ├── tooltip.css │ │ │ │ │ └── tooltip.js │ │ │ │ └── whiteframe │ │ │ │ │ ├── whiteframe.css │ │ │ │ │ └── whiteframe.js │ │ │ ├── css │ │ │ │ └── angular-material-layout.css │ │ │ └── js │ │ │ │ ├── autocomplete │ │ │ │ ├── autocomplete-default-theme.css │ │ │ │ ├── autocomplete-default-theme.min.css │ │ │ │ ├── autocomplete.css │ │ │ │ ├── autocomplete.js │ │ │ │ ├── autocomplete.min.css │ │ │ │ ├── autocomplete.min.js │ │ │ │ └── bower.json │ │ │ │ ├── backdrop │ │ │ │ ├── backdrop-default-theme.css │ │ │ │ ├── backdrop-default-theme.min.css │ │ │ │ ├── backdrop.css │ │ │ │ ├── backdrop.js │ │ │ │ ├── backdrop.min.css │ │ │ │ ├── backdrop.min.js │ │ │ │ └── bower.json │ │ │ │ ├── bottomSheet │ │ │ │ ├── bottomSheet-default-theme.css │ │ │ │ ├── bottomSheet-default-theme.min.css │ │ │ │ ├── bottomSheet.css │ │ │ │ ├── bottomSheet.js │ │ │ │ ├── bottomSheet.min.css │ │ │ │ ├── bottomSheet.min.js │ │ │ │ └── bower.json │ │ │ │ ├── button │ │ │ │ ├── bower.json │ │ │ │ ├── button-default-theme.css │ │ │ │ ├── button-default-theme.min.css │ │ │ │ ├── button.css │ │ │ │ ├── button.js │ │ │ │ ├── button.min.css │ │ │ │ └── button.min.js │ │ │ │ ├── card │ │ │ │ ├── bower.json │ │ │ │ ├── card-default-theme.css │ │ │ │ ├── card-default-theme.min.css │ │ │ │ ├── card.css │ │ │ │ ├── card.js │ │ │ │ ├── card.min.css │ │ │ │ └── card.min.js │ │ │ │ ├── checkbox │ │ │ │ ├── bower.json │ │ │ │ ├── checkbox-default-theme.css │ │ │ │ ├── checkbox-default-theme.min.css │ │ │ │ ├── checkbox.css │ │ │ │ ├── checkbox.js │ │ │ │ ├── checkbox.min.css │ │ │ │ └── checkbox.min.js │ │ │ │ ├── content │ │ │ │ ├── bower.json │ │ │ │ ├── content-default-theme.css │ │ │ │ ├── content-default-theme.min.css │ │ │ │ ├── content.css │ │ │ │ ├── content.js │ │ │ │ ├── content.min.css │ │ │ │ └── content.min.js │ │ │ │ ├── core │ │ │ │ ├── bower.json │ │ │ │ ├── core.css │ │ │ │ ├── core.js │ │ │ │ ├── core.min.css │ │ │ │ ├── core.min.js │ │ │ │ └── default-theme.js │ │ │ │ ├── dialog │ │ │ │ ├── bower.json │ │ │ │ ├── dialog-default-theme.css │ │ │ │ ├── dialog-default-theme.min.css │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog.js │ │ │ │ ├── dialog.min.css │ │ │ │ └── dialog.min.js │ │ │ │ ├── divider │ │ │ │ ├── bower.json │ │ │ │ ├── divider-default-theme.css │ │ │ │ ├── divider-default-theme.min.css │ │ │ │ ├── divider.css │ │ │ │ ├── divider.js │ │ │ │ ├── divider.min.css │ │ │ │ └── divider.min.js │ │ │ │ ├── icon │ │ │ │ ├── bower.json │ │ │ │ ├── icon.css │ │ │ │ ├── icon.js │ │ │ │ ├── icon.min.css │ │ │ │ └── icon.min.js │ │ │ │ ├── input │ │ │ │ ├── bower.json │ │ │ │ ├── input-default-theme.css │ │ │ │ ├── input-default-theme.min.css │ │ │ │ ├── input.css │ │ │ │ ├── input.js │ │ │ │ ├── input.min.css │ │ │ │ └── input.min.js │ │ │ │ ├── list │ │ │ │ ├── bower.json │ │ │ │ ├── list.css │ │ │ │ ├── list.js │ │ │ │ ├── list.min.css │ │ │ │ └── list.min.js │ │ │ │ ├── menu │ │ │ │ ├── bower.json │ │ │ │ ├── menu.css │ │ │ │ ├── menu.js │ │ │ │ ├── menu.min.css │ │ │ │ └── menu.min.js │ │ │ │ ├── progressCircular │ │ │ │ ├── bower.json │ │ │ │ ├── progressCircular-default-theme.css │ │ │ │ ├── progressCircular-default-theme.min.css │ │ │ │ ├── progressCircular.css │ │ │ │ ├── progressCircular.js │ │ │ │ ├── progressCircular.min.css │ │ │ │ └── progressCircular.min.js │ │ │ │ ├── progressLinear │ │ │ │ ├── bower.json │ │ │ │ ├── progressLinear-default-theme.css │ │ │ │ ├── progressLinear-default-theme.min.css │ │ │ │ ├── progressLinear.css │ │ │ │ ├── progressLinear.js │ │ │ │ ├── progressLinear.min.css │ │ │ │ └── progressLinear.min.js │ │ │ │ ├── radioButton │ │ │ │ ├── bower.json │ │ │ │ ├── radioButton-default-theme.css │ │ │ │ ├── radioButton-default-theme.min.css │ │ │ │ ├── radioButton.css │ │ │ │ ├── radioButton.js │ │ │ │ ├── radioButton.min.css │ │ │ │ └── radioButton.min.js │ │ │ │ ├── sidenav │ │ │ │ ├── bower.json │ │ │ │ ├── sidenav-default-theme.css │ │ │ │ ├── sidenav-default-theme.min.css │ │ │ │ ├── sidenav.css │ │ │ │ ├── sidenav.js │ │ │ │ ├── sidenav.min.css │ │ │ │ └── sidenav.min.js │ │ │ │ ├── slider │ │ │ │ ├── bower.json │ │ │ │ ├── slider-default-theme.css │ │ │ │ ├── slider-default-theme.min.css │ │ │ │ ├── slider.css │ │ │ │ ├── slider.js │ │ │ │ ├── slider.min.css │ │ │ │ └── slider.min.js │ │ │ │ ├── sticky │ │ │ │ ├── bower.json │ │ │ │ ├── sticky.css │ │ │ │ ├── sticky.js │ │ │ │ ├── sticky.min.css │ │ │ │ └── sticky.min.js │ │ │ │ ├── subheader │ │ │ │ ├── bower.json │ │ │ │ ├── subheader-default-theme.css │ │ │ │ ├── subheader-default-theme.min.css │ │ │ │ ├── subheader.css │ │ │ │ ├── subheader.js │ │ │ │ ├── subheader.min.css │ │ │ │ └── subheader.min.js │ │ │ │ ├── swipe │ │ │ │ ├── bower.json │ │ │ │ ├── swipe.js │ │ │ │ └── swipe.min.js │ │ │ │ ├── switch │ │ │ │ ├── bower.json │ │ │ │ ├── switch-default-theme.css │ │ │ │ ├── switch-default-theme.min.css │ │ │ │ ├── switch.css │ │ │ │ ├── switch.js │ │ │ │ ├── switch.min.css │ │ │ │ └── switch.min.js │ │ │ │ ├── tabs │ │ │ │ ├── bower.json │ │ │ │ ├── tabs-default-theme.css │ │ │ │ ├── tabs-default-theme.min.css │ │ │ │ ├── tabs.css │ │ │ │ ├── tabs.js │ │ │ │ ├── tabs.min.css │ │ │ │ └── tabs.min.js │ │ │ │ ├── textField │ │ │ │ ├── bower.json │ │ │ │ ├── textField-default-theme.css │ │ │ │ ├── textField-default-theme.min.css │ │ │ │ ├── textField.css │ │ │ │ ├── textField.js │ │ │ │ ├── textField.min.css │ │ │ │ └── textField.min.js │ │ │ │ ├── toast │ │ │ │ ├── bower.json │ │ │ │ ├── toast-default-theme.css │ │ │ │ ├── toast-default-theme.min.css │ │ │ │ ├── toast.css │ │ │ │ ├── toast.js │ │ │ │ ├── toast.min.css │ │ │ │ └── toast.min.js │ │ │ │ ├── toolbar │ │ │ │ ├── bower.json │ │ │ │ ├── toolbar-default-theme.css │ │ │ │ ├── toolbar-default-theme.min.css │ │ │ │ ├── toolbar.css │ │ │ │ ├── toolbar.js │ │ │ │ ├── toolbar.min.css │ │ │ │ └── toolbar.min.js │ │ │ │ ├── tooltip │ │ │ │ ├── bower.json │ │ │ │ ├── tooltip-default-theme.css │ │ │ │ ├── tooltip-default-theme.min.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── tooltip.js │ │ │ │ ├── tooltip.min.css │ │ │ │ └── tooltip.min.js │ │ │ │ └── whiteframe │ │ │ │ ├── bower.json │ │ │ │ ├── whiteframe.css │ │ │ │ ├── whiteframe.js │ │ │ │ ├── whiteframe.min.css │ │ │ │ └── whiteframe.min.js │ │ └── package.json │ ├── angular │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-csp.css │ │ ├── angular.js │ │ ├── angular.min.js │ │ ├── angular.min.js.gzip │ │ ├── angular.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ ├── angularfire │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── angularfire.js │ │ │ └── angularfire.min.js │ │ └── index.js │ └── firebase │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── firebase-debug.js │ │ └── firebase.js │ ├── demoAngularFire.js │ ├── firebase.json │ └── index.html ├── 29thMarch2015 ├── .idea │ ├── .name │ ├── 29thMarch2015.iml │ ├── encodings.xml │ ├── jsLibraryMappings.xml │ ├── misc.xml │ ├── modules.xml │ ├── scopes │ │ └── scope_settings.xml │ ├── vcs.xml │ └── workspace.xml ├── bower.json ├── bower_components │ └── angularjs │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-csp.css │ │ ├── angular.js │ │ ├── angular.min.js │ │ ├── angular.min.js.gzip │ │ ├── angular.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json ├── index.html └── myControllers.js ├── 31stMay2015 ├── .idea │ ├── .name │ ├── 31stMay2015.iml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml ├── bower_components │ ├── angular │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-csp.css │ │ ├── angular.js │ │ ├── angular.min.js │ │ ├── angular.min.js.gzip │ │ ├── angular.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ ├── angularfire │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── angularfire.js │ │ │ └── angularfire.min.js │ │ └── index.js │ ├── angularjs │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-csp.css │ │ ├── angular.js │ │ ├── angular.min.js │ │ ├── angular.min.js.gzip │ │ ├── angular.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ └── firebase │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── firebase-debug.js │ │ └── firebase.js └── demoSceurityRules │ ├── index.html │ └── index.js ├── 3rdMay2015 ├── .idea │ ├── .name │ ├── 3rdMay2015.iml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml └── firebaseArray │ ├── bower.json │ ├── bower_components │ ├── angular-animate │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-animate.js │ │ ├── angular-animate.min.js │ │ ├── angular-animate.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ ├── angular-aria │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-aria.js │ │ ├── angular-aria.min.js │ │ ├── angular-aria.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ ├── angular-material │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── angular-material.css │ │ ├── angular-material.js │ │ ├── angular-material.min.css │ │ ├── angular-material.min.js │ │ ├── bower.json │ │ ├── demos │ │ │ ├── gridList │ │ │ │ ├── demoBasicUsage │ │ │ │ │ └── style.scss │ │ │ │ ├── demoDynamicTiles │ │ │ │ │ └── style.scss │ │ │ │ └── demoResponsiveUsage │ │ │ │ │ └── style.scss │ │ │ ├── icon │ │ │ │ ├── demoLoadSvgIconsFromUrl │ │ │ │ │ └── img │ │ │ │ │ │ └── icons │ │ │ │ │ │ ├── addShoppingCart.svg │ │ │ │ │ │ ├── android.svg │ │ │ │ │ │ └── cake.svg │ │ │ │ ├── demoSvgIconSets │ │ │ │ │ └── assets │ │ │ │ │ │ ├── cake.svg │ │ │ │ │ │ ├── core-icons.svg │ │ │ │ │ │ └── social-icons.svg │ │ │ │ ├── demoSvgIconsFromURL │ │ │ │ │ └── img │ │ │ │ │ │ └── icons │ │ │ │ │ │ ├── addShoppingCart.svg │ │ │ │ │ │ ├── android.svg │ │ │ │ │ │ └── cake.svg │ │ │ │ └── demoUsingTemplateCache │ │ │ │ │ └── assets │ │ │ │ │ ├── android.svg │ │ │ │ │ ├── cake.svg │ │ │ │ │ └── core-icons.svg │ │ │ └── input │ │ │ │ └── demoIcons │ │ │ │ ├── icons │ │ │ │ ├── ic_email_24px.svg │ │ │ │ ├── ic_person_24px.svg │ │ │ │ ├── ic_phone_24px.svg │ │ │ │ └── ic_place_24px.svg │ │ │ │ └── style.scss │ │ ├── index.js │ │ ├── modules │ │ │ ├── closure │ │ │ │ ├── autocomplete │ │ │ │ │ ├── autocomplete-default-theme.css │ │ │ │ │ ├── autocomplete.css │ │ │ │ │ └── autocomplete.js │ │ │ │ ├── backdrop │ │ │ │ │ ├── backdrop-default-theme.css │ │ │ │ │ ├── backdrop.css │ │ │ │ │ └── backdrop.js │ │ │ │ ├── bottomSheet │ │ │ │ │ ├── bottomSheet-default-theme.css │ │ │ │ │ ├── bottomSheet.css │ │ │ │ │ └── bottomSheet.js │ │ │ │ ├── button │ │ │ │ │ ├── button-default-theme.css │ │ │ │ │ ├── button.css │ │ │ │ │ └── button.js │ │ │ │ ├── card │ │ │ │ │ ├── card-default-theme.css │ │ │ │ │ ├── card.css │ │ │ │ │ └── card.js │ │ │ │ ├── checkbox │ │ │ │ │ ├── checkbox-default-theme.css │ │ │ │ │ ├── checkbox.css │ │ │ │ │ └── checkbox.js │ │ │ │ ├── content │ │ │ │ │ ├── content-default-theme.css │ │ │ │ │ ├── content.css │ │ │ │ │ └── content.js │ │ │ │ ├── core │ │ │ │ │ ├── core.css │ │ │ │ │ ├── core.js │ │ │ │ │ └── default-theme.js │ │ │ │ ├── dialog │ │ │ │ │ ├── dialog-default-theme.css │ │ │ │ │ ├── dialog.css │ │ │ │ │ └── dialog.js │ │ │ │ ├── divider │ │ │ │ │ ├── divider-default-theme.css │ │ │ │ │ ├── divider.css │ │ │ │ │ └── divider.js │ │ │ │ ├── gridList │ │ │ │ │ ├── gridList-default-theme.css │ │ │ │ │ ├── gridList.css │ │ │ │ │ └── gridList.js │ │ │ │ ├── icon │ │ │ │ │ ├── icon-default-theme.css │ │ │ │ │ ├── icon.css │ │ │ │ │ └── icon.js │ │ │ │ ├── input │ │ │ │ │ ├── input-default-theme.css │ │ │ │ │ ├── input.css │ │ │ │ │ └── input.js │ │ │ │ ├── list │ │ │ │ │ ├── list.css │ │ │ │ │ └── list.js │ │ │ │ ├── menu │ │ │ │ │ ├── menu.css │ │ │ │ │ └── menu.js │ │ │ │ ├── progressCircular │ │ │ │ │ ├── progressCircular-default-theme.css │ │ │ │ │ ├── progressCircular.css │ │ │ │ │ └── progressCircular.js │ │ │ │ ├── progressLinear │ │ │ │ │ ├── progressLinear-default-theme.css │ │ │ │ │ ├── progressLinear.css │ │ │ │ │ └── progressLinear.js │ │ │ │ ├── radioButton │ │ │ │ │ ├── radioButton-default-theme.css │ │ │ │ │ ├── radioButton.css │ │ │ │ │ └── radioButton.js │ │ │ │ ├── select │ │ │ │ │ ├── select-default-theme.css │ │ │ │ │ ├── select.css │ │ │ │ │ └── select.js │ │ │ │ ├── sidenav │ │ │ │ │ ├── sidenav-default-theme.css │ │ │ │ │ ├── sidenav.css │ │ │ │ │ └── sidenav.js │ │ │ │ ├── slider │ │ │ │ │ ├── slider-default-theme.css │ │ │ │ │ ├── slider.css │ │ │ │ │ └── slider.js │ │ │ │ ├── sticky │ │ │ │ │ ├── sticky.css │ │ │ │ │ └── sticky.js │ │ │ │ ├── subheader │ │ │ │ │ ├── subheader-default-theme.css │ │ │ │ │ ├── subheader.css │ │ │ │ │ └── subheader.js │ │ │ │ ├── swipe │ │ │ │ │ └── swipe.js │ │ │ │ ├── switch │ │ │ │ │ ├── switch-default-theme.css │ │ │ │ │ ├── switch.css │ │ │ │ │ └── switch.js │ │ │ │ ├── tabs │ │ │ │ │ ├── tabs-arrow.svg │ │ │ │ │ ├── tabs-default-theme.css │ │ │ │ │ ├── tabs.css │ │ │ │ │ └── tabs.js │ │ │ │ ├── textField │ │ │ │ │ ├── textField-default-theme.css │ │ │ │ │ ├── textField.css │ │ │ │ │ └── textField.js │ │ │ │ ├── toast │ │ │ │ │ ├── toast-default-theme.css │ │ │ │ │ ├── toast.css │ │ │ │ │ └── toast.js │ │ │ │ ├── toolbar │ │ │ │ │ ├── toolbar-default-theme.css │ │ │ │ │ ├── toolbar.css │ │ │ │ │ └── toolbar.js │ │ │ │ ├── tooltip │ │ │ │ │ ├── tooltip-default-theme.css │ │ │ │ │ ├── tooltip.css │ │ │ │ │ └── tooltip.js │ │ │ │ └── whiteframe │ │ │ │ │ ├── whiteframe.css │ │ │ │ │ └── whiteframe.js │ │ │ ├── css │ │ │ │ └── angular-material-layout.css │ │ │ └── js │ │ │ │ ├── autocomplete │ │ │ │ ├── autocomplete-default-theme.css │ │ │ │ ├── autocomplete-default-theme.min.css │ │ │ │ ├── autocomplete.css │ │ │ │ ├── autocomplete.js │ │ │ │ ├── autocomplete.min.css │ │ │ │ ├── autocomplete.min.js │ │ │ │ └── bower.json │ │ │ │ ├── backdrop │ │ │ │ ├── backdrop-default-theme.css │ │ │ │ ├── backdrop-default-theme.min.css │ │ │ │ ├── backdrop.css │ │ │ │ ├── backdrop.js │ │ │ │ ├── backdrop.min.css │ │ │ │ ├── backdrop.min.js │ │ │ │ └── bower.json │ │ │ │ ├── bottomSheet │ │ │ │ ├── bottomSheet-default-theme.css │ │ │ │ ├── bottomSheet-default-theme.min.css │ │ │ │ ├── bottomSheet.css │ │ │ │ ├── bottomSheet.js │ │ │ │ ├── bottomSheet.min.css │ │ │ │ ├── bottomSheet.min.js │ │ │ │ └── bower.json │ │ │ │ ├── button │ │ │ │ ├── bower.json │ │ │ │ ├── button-default-theme.css │ │ │ │ ├── button-default-theme.min.css │ │ │ │ ├── button.css │ │ │ │ ├── button.js │ │ │ │ ├── button.min.css │ │ │ │ └── button.min.js │ │ │ │ ├── card │ │ │ │ ├── bower.json │ │ │ │ ├── card-default-theme.css │ │ │ │ ├── card-default-theme.min.css │ │ │ │ ├── card.css │ │ │ │ ├── card.js │ │ │ │ ├── card.min.css │ │ │ │ └── card.min.js │ │ │ │ ├── checkbox │ │ │ │ ├── bower.json │ │ │ │ ├── checkbox-default-theme.css │ │ │ │ ├── checkbox-default-theme.min.css │ │ │ │ ├── checkbox.css │ │ │ │ ├── checkbox.js │ │ │ │ ├── checkbox.min.css │ │ │ │ └── checkbox.min.js │ │ │ │ ├── content │ │ │ │ ├── bower.json │ │ │ │ ├── content-default-theme.css │ │ │ │ ├── content-default-theme.min.css │ │ │ │ ├── content.css │ │ │ │ ├── content.js │ │ │ │ ├── content.min.css │ │ │ │ └── content.min.js │ │ │ │ ├── core │ │ │ │ ├── bower.json │ │ │ │ ├── core.css │ │ │ │ ├── core.js │ │ │ │ ├── core.min.css │ │ │ │ ├── core.min.js │ │ │ │ └── default-theme.js │ │ │ │ ├── dialog │ │ │ │ ├── bower.json │ │ │ │ ├── dialog-default-theme.css │ │ │ │ ├── dialog-default-theme.min.css │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog.js │ │ │ │ ├── dialog.min.css │ │ │ │ └── dialog.min.js │ │ │ │ ├── divider │ │ │ │ ├── bower.json │ │ │ │ ├── divider-default-theme.css │ │ │ │ ├── divider-default-theme.min.css │ │ │ │ ├── divider.css │ │ │ │ ├── divider.js │ │ │ │ ├── divider.min.css │ │ │ │ └── divider.min.js │ │ │ │ ├── icon │ │ │ │ ├── bower.json │ │ │ │ ├── icon.css │ │ │ │ ├── icon.js │ │ │ │ ├── icon.min.css │ │ │ │ └── icon.min.js │ │ │ │ ├── input │ │ │ │ ├── bower.json │ │ │ │ ├── input-default-theme.css │ │ │ │ ├── input-default-theme.min.css │ │ │ │ ├── input.css │ │ │ │ ├── input.js │ │ │ │ ├── input.min.css │ │ │ │ └── input.min.js │ │ │ │ ├── list │ │ │ │ ├── bower.json │ │ │ │ ├── list.css │ │ │ │ ├── list.js │ │ │ │ ├── list.min.css │ │ │ │ └── list.min.js │ │ │ │ ├── menu │ │ │ │ ├── bower.json │ │ │ │ ├── menu.css │ │ │ │ ├── menu.js │ │ │ │ ├── menu.min.css │ │ │ │ └── menu.min.js │ │ │ │ ├── progressCircular │ │ │ │ ├── bower.json │ │ │ │ ├── progressCircular-default-theme.css │ │ │ │ ├── progressCircular-default-theme.min.css │ │ │ │ ├── progressCircular.css │ │ │ │ ├── progressCircular.js │ │ │ │ ├── progressCircular.min.css │ │ │ │ └── progressCircular.min.js │ │ │ │ ├── progressLinear │ │ │ │ ├── bower.json │ │ │ │ ├── progressLinear-default-theme.css │ │ │ │ ├── progressLinear-default-theme.min.css │ │ │ │ ├── progressLinear.css │ │ │ │ ├── progressLinear.js │ │ │ │ ├── progressLinear.min.css │ │ │ │ └── progressLinear.min.js │ │ │ │ ├── radioButton │ │ │ │ ├── bower.json │ │ │ │ ├── radioButton-default-theme.css │ │ │ │ ├── radioButton-default-theme.min.css │ │ │ │ ├── radioButton.css │ │ │ │ ├── radioButton.js │ │ │ │ ├── radioButton.min.css │ │ │ │ └── radioButton.min.js │ │ │ │ ├── sidenav │ │ │ │ ├── bower.json │ │ │ │ ├── sidenav-default-theme.css │ │ │ │ ├── sidenav-default-theme.min.css │ │ │ │ ├── sidenav.css │ │ │ │ ├── sidenav.js │ │ │ │ ├── sidenav.min.css │ │ │ │ └── sidenav.min.js │ │ │ │ ├── slider │ │ │ │ ├── bower.json │ │ │ │ ├── slider-default-theme.css │ │ │ │ ├── slider-default-theme.min.css │ │ │ │ ├── slider.css │ │ │ │ ├── slider.js │ │ │ │ ├── slider.min.css │ │ │ │ └── slider.min.js │ │ │ │ ├── sticky │ │ │ │ ├── bower.json │ │ │ │ ├── sticky.css │ │ │ │ ├── sticky.js │ │ │ │ ├── sticky.min.css │ │ │ │ └── sticky.min.js │ │ │ │ ├── subheader │ │ │ │ ├── bower.json │ │ │ │ ├── subheader-default-theme.css │ │ │ │ ├── subheader-default-theme.min.css │ │ │ │ ├── subheader.css │ │ │ │ ├── subheader.js │ │ │ │ ├── subheader.min.css │ │ │ │ └── subheader.min.js │ │ │ │ ├── swipe │ │ │ │ ├── bower.json │ │ │ │ ├── swipe.js │ │ │ │ └── swipe.min.js │ │ │ │ ├── switch │ │ │ │ ├── bower.json │ │ │ │ ├── switch-default-theme.css │ │ │ │ ├── switch-default-theme.min.css │ │ │ │ ├── switch.css │ │ │ │ ├── switch.js │ │ │ │ ├── switch.min.css │ │ │ │ └── switch.min.js │ │ │ │ ├── tabs │ │ │ │ ├── bower.json │ │ │ │ ├── tabs-default-theme.css │ │ │ │ ├── tabs-default-theme.min.css │ │ │ │ ├── tabs.css │ │ │ │ ├── tabs.js │ │ │ │ ├── tabs.min.css │ │ │ │ └── tabs.min.js │ │ │ │ ├── textField │ │ │ │ ├── bower.json │ │ │ │ ├── textField-default-theme.css │ │ │ │ ├── textField-default-theme.min.css │ │ │ │ ├── textField.css │ │ │ │ ├── textField.js │ │ │ │ ├── textField.min.css │ │ │ │ └── textField.min.js │ │ │ │ ├── toast │ │ │ │ ├── bower.json │ │ │ │ ├── toast-default-theme.css │ │ │ │ ├── toast-default-theme.min.css │ │ │ │ ├── toast.css │ │ │ │ ├── toast.js │ │ │ │ ├── toast.min.css │ │ │ │ └── toast.min.js │ │ │ │ ├── toolbar │ │ │ │ ├── bower.json │ │ │ │ ├── toolbar-default-theme.css │ │ │ │ ├── toolbar-default-theme.min.css │ │ │ │ ├── toolbar.css │ │ │ │ ├── toolbar.js │ │ │ │ ├── toolbar.min.css │ │ │ │ └── toolbar.min.js │ │ │ │ ├── tooltip │ │ │ │ ├── bower.json │ │ │ │ ├── tooltip-default-theme.css │ │ │ │ ├── tooltip-default-theme.min.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── tooltip.js │ │ │ │ ├── tooltip.min.css │ │ │ │ └── tooltip.min.js │ │ │ │ └── whiteframe │ │ │ │ ├── bower.json │ │ │ │ ├── whiteframe.css │ │ │ │ ├── whiteframe.js │ │ │ │ ├── whiteframe.min.css │ │ │ │ └── whiteframe.min.js │ │ └── package.json │ ├── angular │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-csp.css │ │ ├── angular.js │ │ ├── angular.min.js │ │ ├── angular.min.js.gzip │ │ ├── angular.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ ├── angularfire │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── angularfire.js │ │ │ └── angularfire.min.js │ │ └── index.js │ └── firebase │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── firebase-debug.js │ │ └── firebase.js │ ├── index.html │ └── todo.js ├── 5thApril2015 ├── .idea │ ├── .name │ ├── 5thApril2015.iml │ ├── encodings.xml │ ├── misc.xml │ ├── modules.xml │ ├── scopes │ │ └── scope_settings.xml │ ├── vcs.xml │ └── workspace.xml ├── RevisionClass │ ├── index.html │ └── myControllers.js └── bower_components │ └── angularjs │ ├── .bower.json │ ├── README.md │ ├── angular-csp.css │ ├── angular.js │ ├── angular.min.js │ ├── angular.min.js.gzip │ ├── angular.min.js.map │ ├── bower.json │ ├── index.js │ └── package.json ├── 5thJuly2015 ├── .idea │ ├── .name │ ├── 5thJuly2015.iml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml ├── bower.json ├── bower_components │ ├── angular │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-csp.css │ │ ├── angular.js │ │ ├── angular.min.js │ │ ├── angular.min.js.gzip │ │ ├── angular.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ ├── angularfire │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── angularfire.js │ │ │ └── angularfire.min.js │ │ └── index.js │ └── firebase │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── firebase-debug.js │ │ └── firebase.js ├── firebaseJSSDK │ ├── index.html │ └── index.js ├── firebaseSecurityRules - Practice.txt └── sampleAuth │ ├── index.html │ └── index.js ├── 7thJune2015 ├── .idea │ ├── .name │ ├── 7thJune2015.iml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml ├── bower.json ├── bower_components │ ├── angular-animate │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-animate.js │ │ ├── angular-animate.min.js │ │ ├── angular-animate.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ ├── angular-aria │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-aria.js │ │ ├── angular-aria.min.js │ │ ├── angular-aria.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ ├── angular-material │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── angular-material-mocks.js │ │ ├── angular-material.css │ │ ├── angular-material.js │ │ ├── angular-material.min.css │ │ ├── angular-material.min.js │ │ ├── bower.json │ │ ├── demos │ │ │ ├── bottomSheet │ │ │ │ └── demoBasicUsage │ │ │ │ │ └── img │ │ │ │ │ └── icons │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── copy2.svg │ │ │ │ │ ├── facebook.svg │ │ │ │ │ ├── hangout.svg │ │ │ │ │ ├── mail.svg │ │ │ │ │ ├── message.svg │ │ │ │ │ ├── print.svg │ │ │ │ │ ├── share-arrow.svg │ │ │ │ │ ├── twitter.svg │ │ │ │ │ └── upload.svg │ │ │ ├── chips │ │ │ │ ├── demoBasicUsage │ │ │ │ │ └── style.scss │ │ │ │ └── demoContactChips │ │ │ │ │ └── style.scss │ │ │ ├── gridList │ │ │ │ ├── demoBasicUsage │ │ │ │ │ └── style.scss │ │ │ │ ├── demoDynamicTiles │ │ │ │ │ └── style.scss │ │ │ │ └── demoResponsiveUsage │ │ │ │ │ └── style.scss │ │ │ ├── icon │ │ │ │ ├── demoLoadSvgIconsFromUrl │ │ │ │ │ └── img │ │ │ │ │ │ └── icons │ │ │ │ │ │ ├── addShoppingCart.svg │ │ │ │ │ │ ├── android.svg │ │ │ │ │ │ └── cake.svg │ │ │ │ ├── demoSvgIconSets │ │ │ │ │ └── assets │ │ │ │ │ │ ├── cake.svg │ │ │ │ │ │ ├── core-icons.svg │ │ │ │ │ │ └── social-icons.svg │ │ │ │ ├── demoSvgIconsFromURL │ │ │ │ │ └── img │ │ │ │ │ │ └── icons │ │ │ │ │ │ ├── addShoppingCart.svg │ │ │ │ │ │ ├── android.svg │ │ │ │ │ │ └── cake.svg │ │ │ │ └── demoUsingTemplateCache │ │ │ │ │ └── assets │ │ │ │ │ ├── android.svg │ │ │ │ │ ├── cake.svg │ │ │ │ │ └── core-icons.svg │ │ │ ├── input │ │ │ │ └── demoIcons │ │ │ │ │ ├── icons │ │ │ │ │ ├── ic_email_24px.svg │ │ │ │ │ ├── ic_person_24px.svg │ │ │ │ │ ├── ic_phone_24px.svg │ │ │ │ │ └── ic_place_24px.svg │ │ │ │ │ └── style.scss │ │ │ ├── list │ │ │ │ └── demoListControls │ │ │ │ │ └── img │ │ │ │ │ ├── 100-0.jpeg │ │ │ │ │ ├── 100-1.jpeg │ │ │ │ │ └── 100-2.jpeg │ │ │ ├── tabs │ │ │ │ ├── demoDynamicHeight │ │ │ │ │ └── style.scss │ │ │ │ ├── demoDynamicTabs │ │ │ │ │ └── style.scss │ │ │ │ └── demoStaticTabs │ │ │ │ │ └── style.scss │ │ │ └── toolbar │ │ │ │ └── demoBasicUsage │ │ │ │ └── img │ │ │ │ └── icons │ │ │ │ ├── favorite.svg │ │ │ │ ├── menu.svg │ │ │ │ └── more_vert.svg │ │ ├── index.js │ │ ├── modules │ │ │ ├── closure │ │ │ │ ├── autocomplete │ │ │ │ │ ├── autocomplete-default-theme.css │ │ │ │ │ ├── autocomplete.css │ │ │ │ │ └── autocomplete.js │ │ │ │ ├── backdrop │ │ │ │ │ ├── backdrop-default-theme.css │ │ │ │ │ ├── backdrop.css │ │ │ │ │ └── backdrop.js │ │ │ │ ├── bottomSheet │ │ │ │ │ ├── bottomSheet-default-theme.css │ │ │ │ │ ├── bottomSheet.css │ │ │ │ │ └── bottomSheet.js │ │ │ │ ├── button │ │ │ │ │ ├── button-default-theme.css │ │ │ │ │ ├── button.css │ │ │ │ │ └── button.js │ │ │ │ ├── card │ │ │ │ │ ├── card-default-theme.css │ │ │ │ │ ├── card.css │ │ │ │ │ └── card.js │ │ │ │ ├── checkbox │ │ │ │ │ ├── checkbox-default-theme.css │ │ │ │ │ ├── checkbox.css │ │ │ │ │ └── checkbox.js │ │ │ │ ├── chips │ │ │ │ │ ├── chips-default-theme.css │ │ │ │ │ ├── chips.css │ │ │ │ │ └── chips.js │ │ │ │ ├── content │ │ │ │ │ ├── content-default-theme.css │ │ │ │ │ ├── content.css │ │ │ │ │ └── content.js │ │ │ │ ├── core │ │ │ │ │ ├── core.css │ │ │ │ │ ├── core.js │ │ │ │ │ └── default-theme.js │ │ │ │ ├── dialog │ │ │ │ │ ├── dialog-default-theme.css │ │ │ │ │ ├── dialog.css │ │ │ │ │ └── dialog.js │ │ │ │ ├── divider │ │ │ │ │ ├── divider-default-theme.css │ │ │ │ │ ├── divider.css │ │ │ │ │ └── divider.js │ │ │ │ ├── gridList │ │ │ │ │ ├── gridList-default-theme.css │ │ │ │ │ ├── gridList.css │ │ │ │ │ └── gridList.js │ │ │ │ ├── icon │ │ │ │ │ ├── icon-default-theme.css │ │ │ │ │ ├── icon.css │ │ │ │ │ └── icon.js │ │ │ │ ├── input │ │ │ │ │ ├── input-default-theme.css │ │ │ │ │ ├── input.css │ │ │ │ │ └── input.js │ │ │ │ ├── list │ │ │ │ │ ├── list-default-theme.css │ │ │ │ │ ├── list.css │ │ │ │ │ └── list.js │ │ │ │ ├── menu │ │ │ │ │ ├── menu.css │ │ │ │ │ └── menu.js │ │ │ │ ├── progressCircular │ │ │ │ │ ├── progressCircular-default-theme.css │ │ │ │ │ ├── progressCircular.css │ │ │ │ │ └── progressCircular.js │ │ │ │ ├── progressLinear │ │ │ │ │ ├── progressLinear-default-theme.css │ │ │ │ │ ├── progressLinear.css │ │ │ │ │ └── progressLinear.js │ │ │ │ ├── radioButton │ │ │ │ │ ├── radioButton-default-theme.css │ │ │ │ │ ├── radioButton.css │ │ │ │ │ └── radioButton.js │ │ │ │ ├── select │ │ │ │ │ ├── select-default-theme.css │ │ │ │ │ ├── select.css │ │ │ │ │ └── select.js │ │ │ │ ├── sidenav │ │ │ │ │ ├── sidenav-default-theme.css │ │ │ │ │ ├── sidenav.css │ │ │ │ │ └── sidenav.js │ │ │ │ ├── slider │ │ │ │ │ ├── slider-default-theme.css │ │ │ │ │ ├── slider.css │ │ │ │ │ └── slider.js │ │ │ │ ├── sticky │ │ │ │ │ ├── sticky.css │ │ │ │ │ └── sticky.js │ │ │ │ ├── subheader │ │ │ │ │ ├── subheader-default-theme.css │ │ │ │ │ ├── subheader.css │ │ │ │ │ └── subheader.js │ │ │ │ ├── swipe │ │ │ │ │ └── swipe.js │ │ │ │ ├── switch │ │ │ │ │ ├── switch-default-theme.css │ │ │ │ │ ├── switch.css │ │ │ │ │ └── switch.js │ │ │ │ ├── tabs │ │ │ │ │ ├── tabs-arrow.svg │ │ │ │ │ ├── tabs-default-theme.css │ │ │ │ │ ├── tabs.css │ │ │ │ │ └── tabs.js │ │ │ │ ├── textField │ │ │ │ │ ├── textField-default-theme.css │ │ │ │ │ ├── textField.css │ │ │ │ │ └── textField.js │ │ │ │ ├── toast │ │ │ │ │ ├── toast-default-theme.css │ │ │ │ │ ├── toast.css │ │ │ │ │ └── toast.js │ │ │ │ ├── toolbar │ │ │ │ │ ├── toolbar-default-theme.css │ │ │ │ │ ├── toolbar.css │ │ │ │ │ └── toolbar.js │ │ │ │ ├── tooltip │ │ │ │ │ ├── tooltip-default-theme.css │ │ │ │ │ ├── tooltip.css │ │ │ │ │ └── tooltip.js │ │ │ │ └── whiteframe │ │ │ │ │ ├── whiteframe.css │ │ │ │ │ └── whiteframe.js │ │ │ ├── css │ │ │ │ └── angular-material-layout.css │ │ │ └── js │ │ │ │ ├── autocomplete │ │ │ │ ├── autocomplete-default-theme.css │ │ │ │ ├── autocomplete-default-theme.min.css │ │ │ │ ├── autocomplete.css │ │ │ │ ├── autocomplete.js │ │ │ │ ├── autocomplete.min.css │ │ │ │ ├── autocomplete.min.js │ │ │ │ └── bower.json │ │ │ │ ├── backdrop │ │ │ │ ├── backdrop-default-theme.css │ │ │ │ ├── backdrop-default-theme.min.css │ │ │ │ ├── backdrop.css │ │ │ │ ├── backdrop.js │ │ │ │ ├── backdrop.min.css │ │ │ │ ├── backdrop.min.js │ │ │ │ └── bower.json │ │ │ │ ├── bottomSheet │ │ │ │ ├── bottomSheet-default-theme.css │ │ │ │ ├── bottomSheet-default-theme.min.css │ │ │ │ ├── bottomSheet.css │ │ │ │ ├── bottomSheet.js │ │ │ │ ├── bottomSheet.min.css │ │ │ │ ├── bottomSheet.min.js │ │ │ │ └── bower.json │ │ │ │ ├── button │ │ │ │ ├── bower.json │ │ │ │ ├── button-default-theme.css │ │ │ │ ├── button-default-theme.min.css │ │ │ │ ├── button.css │ │ │ │ ├── button.js │ │ │ │ ├── button.min.css │ │ │ │ └── button.min.js │ │ │ │ ├── card │ │ │ │ ├── bower.json │ │ │ │ ├── card-default-theme.css │ │ │ │ ├── card-default-theme.min.css │ │ │ │ ├── card.css │ │ │ │ ├── card.js │ │ │ │ ├── card.min.css │ │ │ │ └── card.min.js │ │ │ │ ├── checkbox │ │ │ │ ├── bower.json │ │ │ │ ├── checkbox-default-theme.css │ │ │ │ ├── checkbox-default-theme.min.css │ │ │ │ ├── checkbox.css │ │ │ │ ├── checkbox.js │ │ │ │ ├── checkbox.min.css │ │ │ │ └── checkbox.min.js │ │ │ │ ├── chips │ │ │ │ ├── bower.json │ │ │ │ ├── chips-default-theme.css │ │ │ │ ├── chips-default-theme.min.css │ │ │ │ ├── chips.css │ │ │ │ ├── chips.js │ │ │ │ ├── chips.min.css │ │ │ │ └── chips.min.js │ │ │ │ ├── content │ │ │ │ ├── bower.json │ │ │ │ ├── content-default-theme.css │ │ │ │ ├── content-default-theme.min.css │ │ │ │ ├── content.css │ │ │ │ ├── content.js │ │ │ │ ├── content.min.css │ │ │ │ └── content.min.js │ │ │ │ ├── core │ │ │ │ ├── bower.json │ │ │ │ ├── core.css │ │ │ │ ├── core.js │ │ │ │ ├── core.min.css │ │ │ │ ├── core.min.js │ │ │ │ └── default-theme.js │ │ │ │ ├── dialog │ │ │ │ ├── bower.json │ │ │ │ ├── dialog-default-theme.css │ │ │ │ ├── dialog-default-theme.min.css │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog.js │ │ │ │ ├── dialog.min.css │ │ │ │ └── dialog.min.js │ │ │ │ ├── divider │ │ │ │ ├── bower.json │ │ │ │ ├── divider-default-theme.css │ │ │ │ ├── divider-default-theme.min.css │ │ │ │ ├── divider.css │ │ │ │ ├── divider.js │ │ │ │ ├── divider.min.css │ │ │ │ └── divider.min.js │ │ │ │ ├── gridList │ │ │ │ ├── bower.json │ │ │ │ ├── gridList.css │ │ │ │ ├── gridList.js │ │ │ │ ├── gridList.min.css │ │ │ │ └── gridList.min.js │ │ │ │ ├── icon │ │ │ │ ├── bower.json │ │ │ │ ├── icon-default-theme.css │ │ │ │ ├── icon-default-theme.min.css │ │ │ │ ├── icon.css │ │ │ │ ├── icon.js │ │ │ │ ├── icon.min.css │ │ │ │ └── icon.min.js │ │ │ │ ├── input │ │ │ │ ├── bower.json │ │ │ │ ├── input-default-theme.css │ │ │ │ ├── input-default-theme.min.css │ │ │ │ ├── input.css │ │ │ │ ├── input.js │ │ │ │ ├── input.min.css │ │ │ │ └── input.min.js │ │ │ │ ├── list │ │ │ │ ├── bower.json │ │ │ │ ├── list-default-theme.css │ │ │ │ ├── list-default-theme.min.css │ │ │ │ ├── list.css │ │ │ │ ├── list.js │ │ │ │ ├── list.min.css │ │ │ │ └── list.min.js │ │ │ │ ├── menu │ │ │ │ ├── bower.json │ │ │ │ ├── menu.css │ │ │ │ ├── menu.js │ │ │ │ ├── menu.min.css │ │ │ │ └── menu.min.js │ │ │ │ ├── progressCircular │ │ │ │ ├── bower.json │ │ │ │ ├── progressCircular-default-theme.css │ │ │ │ ├── progressCircular-default-theme.min.css │ │ │ │ ├── progressCircular.css │ │ │ │ ├── progressCircular.js │ │ │ │ ├── progressCircular.min.css │ │ │ │ └── progressCircular.min.js │ │ │ │ ├── progressLinear │ │ │ │ ├── bower.json │ │ │ │ ├── progressLinear-default-theme.css │ │ │ │ ├── progressLinear-default-theme.min.css │ │ │ │ ├── progressLinear.css │ │ │ │ ├── progressLinear.js │ │ │ │ ├── progressLinear.min.css │ │ │ │ └── progressLinear.min.js │ │ │ │ ├── radioButton │ │ │ │ ├── bower.json │ │ │ │ ├── radioButton-default-theme.css │ │ │ │ ├── radioButton-default-theme.min.css │ │ │ │ ├── radioButton.css │ │ │ │ ├── radioButton.js │ │ │ │ ├── radioButton.min.css │ │ │ │ └── radioButton.min.js │ │ │ │ ├── select │ │ │ │ ├── bower.json │ │ │ │ ├── select-default-theme.css │ │ │ │ ├── select-default-theme.min.css │ │ │ │ ├── select.css │ │ │ │ ├── select.js │ │ │ │ ├── select.min.css │ │ │ │ └── select.min.js │ │ │ │ ├── sidenav │ │ │ │ ├── bower.json │ │ │ │ ├── sidenav-default-theme.css │ │ │ │ ├── sidenav-default-theme.min.css │ │ │ │ ├── sidenav.css │ │ │ │ ├── sidenav.js │ │ │ │ ├── sidenav.min.css │ │ │ │ └── sidenav.min.js │ │ │ │ ├── slider │ │ │ │ ├── bower.json │ │ │ │ ├── slider-default-theme.css │ │ │ │ ├── slider-default-theme.min.css │ │ │ │ ├── slider.css │ │ │ │ ├── slider.js │ │ │ │ ├── slider.min.css │ │ │ │ └── slider.min.js │ │ │ │ ├── sticky │ │ │ │ ├── bower.json │ │ │ │ ├── sticky.css │ │ │ │ ├── sticky.js │ │ │ │ ├── sticky.min.css │ │ │ │ └── sticky.min.js │ │ │ │ ├── subheader │ │ │ │ ├── bower.json │ │ │ │ ├── subheader-default-theme.css │ │ │ │ ├── subheader-default-theme.min.css │ │ │ │ ├── subheader.css │ │ │ │ ├── subheader.js │ │ │ │ ├── subheader.min.css │ │ │ │ └── subheader.min.js │ │ │ │ ├── swipe │ │ │ │ ├── bower.json │ │ │ │ ├── swipe.js │ │ │ │ └── swipe.min.js │ │ │ │ ├── switch │ │ │ │ ├── bower.json │ │ │ │ ├── switch-default-theme.css │ │ │ │ ├── switch-default-theme.min.css │ │ │ │ ├── switch.css │ │ │ │ ├── switch.js │ │ │ │ ├── switch.min.css │ │ │ │ └── switch.min.js │ │ │ │ ├── tabs │ │ │ │ ├── bower.json │ │ │ │ ├── tabs-default-theme.css │ │ │ │ ├── tabs-default-theme.min.css │ │ │ │ ├── tabs.css │ │ │ │ ├── tabs.js │ │ │ │ ├── tabs.min.css │ │ │ │ └── tabs.min.js │ │ │ │ ├── textField │ │ │ │ ├── bower.json │ │ │ │ ├── textField-default-theme.css │ │ │ │ ├── textField-default-theme.min.css │ │ │ │ ├── textField.css │ │ │ │ ├── textField.js │ │ │ │ ├── textField.min.css │ │ │ │ └── textField.min.js │ │ │ │ ├── toast │ │ │ │ ├── bower.json │ │ │ │ ├── toast-default-theme.css │ │ │ │ ├── toast-default-theme.min.css │ │ │ │ ├── toast.css │ │ │ │ ├── toast.js │ │ │ │ ├── toast.min.css │ │ │ │ └── toast.min.js │ │ │ │ ├── toolbar │ │ │ │ ├── bower.json │ │ │ │ ├── toolbar-default-theme.css │ │ │ │ ├── toolbar-default-theme.min.css │ │ │ │ ├── toolbar.css │ │ │ │ ├── toolbar.js │ │ │ │ ├── toolbar.min.css │ │ │ │ └── toolbar.min.js │ │ │ │ ├── tooltip │ │ │ │ ├── bower.json │ │ │ │ ├── tooltip-default-theme.css │ │ │ │ ├── tooltip-default-theme.min.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── tooltip.js │ │ │ │ ├── tooltip.min.css │ │ │ │ └── tooltip.min.js │ │ │ │ └── whiteframe │ │ │ │ ├── bower.json │ │ │ │ ├── whiteframe.css │ │ │ │ ├── whiteframe.js │ │ │ │ ├── whiteframe.min.css │ │ │ │ └── whiteframe.min.js │ │ └── package.json │ ├── angular-new-router │ │ ├── .bower.json │ │ ├── .bowerrc │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── ARCHITECTURE.md │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── DOCUMENTATION.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── chromedriver │ │ │ ├── README │ │ │ ├── chromedriver_linux.zip │ │ │ ├── chromedriver_mac.zip │ │ │ ├── chromedriver_shadow_dom.patch │ │ │ └── selenium_shadow_dom.patch │ │ ├── config.json │ │ ├── config │ │ │ ├── karma.sauce.conf.js │ │ │ └── karma.travis.conf.js │ │ ├── docs │ │ │ ├── content │ │ │ │ ├── configuration.md │ │ │ │ ├── getting-started.md │ │ │ │ └── lifecycle.md │ │ │ ├── dgeni.conf.js │ │ │ ├── file-readers │ │ │ │ └── markdown.js │ │ │ ├── highlight.css │ │ │ ├── processors │ │ │ │ ├── addMethodsToService.js │ │ │ │ ├── generateIndexPage.js │ │ │ │ └── markdown.js │ │ │ ├── rendering │ │ │ │ ├── docTypeLabel.js │ │ │ │ └── relativeLinkInlineTag.js │ │ │ ├── style.css │ │ │ ├── templates │ │ │ │ ├── index.template.html │ │ │ │ ├── js.template.html │ │ │ │ ├── layout │ │ │ │ │ └── base.template.html │ │ │ │ └── markdown.template.html │ │ │ └── traceur-package │ │ │ │ ├── index.js │ │ │ │ ├── processors │ │ │ │ ├── generateDocsFromComments.js │ │ │ │ ├── processClassDocs.js │ │ │ │ └── processModuleDocs.js │ │ │ │ ├── readers │ │ │ │ ├── atScript.js │ │ │ │ └── atScript.spec.js │ │ │ │ ├── services │ │ │ │ ├── AttachCommentTreeVisitor.js │ │ │ │ ├── ExportTreeVisitor.js │ │ │ │ ├── atParser.js │ │ │ │ ├── atParser.spec.js │ │ │ │ ├── getJSDocComment.js │ │ │ │ ├── getJSDocComment.spec.js │ │ │ │ └── traceur.js │ │ │ │ └── templates │ │ │ │ ├── class.template.html │ │ │ │ ├── common.template.html │ │ │ │ ├── data-module.template.js │ │ │ │ ├── layout │ │ │ │ └── base.template.html │ │ │ │ └── module.template.html │ │ ├── examples │ │ │ └── angular-1 │ │ │ │ ├── animation │ │ │ │ ├── app.css │ │ │ │ ├── app.js │ │ │ │ ├── components │ │ │ │ │ ├── goodbye │ │ │ │ │ │ ├── goodbye.html │ │ │ │ │ │ └── goodbye.js │ │ │ │ │ └── welcome │ │ │ │ │ │ ├── welcome.html │ │ │ │ │ │ └── welcome.js │ │ │ │ ├── index.html │ │ │ │ └── scenario.js │ │ │ │ ├── confirm-unsaved │ │ │ │ ├── app.js │ │ │ │ ├── components │ │ │ │ │ ├── edit-post │ │ │ │ │ │ ├── edit-post.html │ │ │ │ │ │ └── edit-post.js │ │ │ │ │ ├── index │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index.js │ │ │ │ │ └── save-modal │ │ │ │ │ │ ├── save-modal.css │ │ │ │ │ │ ├── save-modal.html │ │ │ │ │ │ └── save-modal.js │ │ │ │ ├── index.html │ │ │ │ └── scenario.js │ │ │ │ ├── hello │ │ │ │ ├── app.js │ │ │ │ ├── components │ │ │ │ │ ├── flickr │ │ │ │ │ │ ├── flickr.html │ │ │ │ │ │ └── flickr.js │ │ │ │ │ ├── settings │ │ │ │ │ │ ├── settings.html │ │ │ │ │ │ └── settings.js │ │ │ │ │ └── welcome │ │ │ │ │ │ ├── welcome.html │ │ │ │ │ │ └── welcome.js │ │ │ │ ├── index.html │ │ │ │ └── scenario.js │ │ │ │ ├── phone-kitten │ │ │ │ ├── app.js │ │ │ │ ├── components │ │ │ │ │ ├── phone-detail │ │ │ │ │ │ ├── phone-detail.html │ │ │ │ │ │ └── phone-detail.js │ │ │ │ │ └── phone-list │ │ │ │ │ │ ├── phone-list.html │ │ │ │ │ │ └── phone-list.js │ │ │ │ ├── css │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── animations.css │ │ │ │ │ ├── app.css │ │ │ │ │ └── bootstrap.css │ │ │ │ ├── img │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ │ └── phones │ │ │ │ │ │ ├── dell-streak-7.0.jpg │ │ │ │ │ │ ├── dell-streak-7.1.jpg │ │ │ │ │ │ ├── dell-streak-7.2.jpg │ │ │ │ │ │ ├── dell-streak-7.3.jpg │ │ │ │ │ │ ├── dell-streak-7.4.jpg │ │ │ │ │ │ ├── dell-venue.0.jpg │ │ │ │ │ │ ├── dell-venue.1.jpg │ │ │ │ │ │ ├── dell-venue.2.jpg │ │ │ │ │ │ ├── dell-venue.3.jpg │ │ │ │ │ │ ├── dell-venue.4.jpg │ │ │ │ │ │ ├── dell-venue.5.jpg │ │ │ │ │ │ ├── droid-2-global-by-motorola.0.jpg │ │ │ │ │ │ ├── droid-2-global-by-motorola.1.jpg │ │ │ │ │ │ ├── droid-2-global-by-motorola.2.jpg │ │ │ │ │ │ ├── droid-pro-by-motorola.0.jpg │ │ │ │ │ │ ├── droid-pro-by-motorola.1.jpg │ │ │ │ │ │ ├── lg-axis.0.jpg │ │ │ │ │ │ ├── lg-axis.1.jpg │ │ │ │ │ │ ├── lg-axis.2.jpg │ │ │ │ │ │ ├── motorola-atrix-4g.0.jpg │ │ │ │ │ │ ├── motorola-atrix-4g.1.jpg │ │ │ │ │ │ ├── motorola-atrix-4g.2.jpg │ │ │ │ │ │ ├── motorola-atrix-4g.3.jpg │ │ │ │ │ │ ├── motorola-bravo-with-motoblur.0.jpg │ │ │ │ │ │ ├── motorola-bravo-with-motoblur.1.jpg │ │ │ │ │ │ ├── motorola-bravo-with-motoblur.2.jpg │ │ │ │ │ │ ├── motorola-charm-with-motoblur.0.jpg │ │ │ │ │ │ ├── motorola-charm-with-motoblur.1.jpg │ │ │ │ │ │ ├── motorola-charm-with-motoblur.2.jpg │ │ │ │ │ │ ├── motorola-defy-with-motoblur.0.jpg │ │ │ │ │ │ ├── motorola-defy-with-motoblur.1.jpg │ │ │ │ │ │ ├── motorola-defy-with-motoblur.2.jpg │ │ │ │ │ │ ├── motorola-xoom-with-wi-fi.0.jpg │ │ │ │ │ │ ├── motorola-xoom-with-wi-fi.1.jpg │ │ │ │ │ │ ├── motorola-xoom-with-wi-fi.2.jpg │ │ │ │ │ │ ├── motorola-xoom-with-wi-fi.3.jpg │ │ │ │ │ │ ├── motorola-xoom-with-wi-fi.4.jpg │ │ │ │ │ │ ├── motorola-xoom-with-wi-fi.5.jpg │ │ │ │ │ │ ├── motorola-xoom.0.jpg │ │ │ │ │ │ ├── motorola-xoom.1.jpg │ │ │ │ │ │ ├── motorola-xoom.2.jpg │ │ │ │ │ │ ├── nexus-s.0.jpg │ │ │ │ │ │ ├── nexus-s.1.jpg │ │ │ │ │ │ ├── nexus-s.2.jpg │ │ │ │ │ │ ├── nexus-s.3.jpg │ │ │ │ │ │ ├── samsung-galaxy-tab.0.jpg │ │ │ │ │ │ ├── samsung-galaxy-tab.1.jpg │ │ │ │ │ │ ├── samsung-galaxy-tab.2.jpg │ │ │ │ │ │ ├── samsung-galaxy-tab.3.jpg │ │ │ │ │ │ ├── samsung-galaxy-tab.4.jpg │ │ │ │ │ │ ├── samsung-galaxy-tab.5.jpg │ │ │ │ │ │ ├── samsung-galaxy-tab.6.jpg │ │ │ │ │ │ ├── samsung-gem.0.jpg │ │ │ │ │ │ ├── samsung-gem.1.jpg │ │ │ │ │ │ ├── samsung-gem.2.jpg │ │ │ │ │ │ ├── samsung-mesmerize-a-galaxy-s-phone.0.jpg │ │ │ │ │ │ ├── samsung-mesmerize-a-galaxy-s-phone.1.jpg │ │ │ │ │ │ ├── samsung-mesmerize-a-galaxy-s-phone.2.jpg │ │ │ │ │ │ ├── samsung-mesmerize-a-galaxy-s-phone.3.jpg │ │ │ │ │ │ ├── samsung-showcase-a-galaxy-s-phone.0.jpg │ │ │ │ │ │ ├── samsung-showcase-a-galaxy-s-phone.1.jpg │ │ │ │ │ │ ├── samsung-showcase-a-galaxy-s-phone.2.jpg │ │ │ │ │ │ ├── samsung-transform.0.jpg │ │ │ │ │ │ ├── samsung-transform.1.jpg │ │ │ │ │ │ ├── samsung-transform.2.jpg │ │ │ │ │ │ ├── samsung-transform.3.jpg │ │ │ │ │ │ ├── samsung-transform.4.jpg │ │ │ │ │ │ ├── sanyo-zio.0.jpg │ │ │ │ │ │ ├── sanyo-zio.1.jpg │ │ │ │ │ │ ├── sanyo-zio.2.jpg │ │ │ │ │ │ ├── t-mobile-g2.0.jpg │ │ │ │ │ │ ├── t-mobile-g2.1.jpg │ │ │ │ │ │ ├── t-mobile-g2.2.jpg │ │ │ │ │ │ ├── t-mobile-mytouch-4g.0.jpg │ │ │ │ │ │ ├── t-mobile-mytouch-4g.1.jpg │ │ │ │ │ │ ├── t-mobile-mytouch-4g.2.jpg │ │ │ │ │ │ ├── t-mobile-mytouch-4g.3.jpg │ │ │ │ │ │ ├── t-mobile-mytouch-4g.4.jpg │ │ │ │ │ │ └── t-mobile-mytouch-4g.5.jpg │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── animations.js │ │ │ │ │ ├── filters.js │ │ │ │ │ └── services.js │ │ │ │ ├── phones │ │ │ │ │ ├── dell-streak-7.json │ │ │ │ │ ├── dell-venue.json │ │ │ │ │ ├── droid-2-global-by-motorola.json │ │ │ │ │ ├── droid-pro-by-motorola.json │ │ │ │ │ ├── lg-axis.json │ │ │ │ │ ├── motorola-atrix-4g.json │ │ │ │ │ ├── motorola-bravo-with-motoblur.json │ │ │ │ │ ├── motorola-charm-with-motoblur.json │ │ │ │ │ ├── motorola-defy-with-motoblur.json │ │ │ │ │ ├── motorola-xoom-with-wi-fi.json │ │ │ │ │ ├── motorola-xoom.json │ │ │ │ │ ├── nexus-s.json │ │ │ │ │ ├── phones.json │ │ │ │ │ ├── samsung-galaxy-tab.json │ │ │ │ │ ├── samsung-gem.json │ │ │ │ │ ├── samsung-mesmerize-a-galaxy-s-phone.json │ │ │ │ │ ├── samsung-showcase-a-galaxy-s-phone.json │ │ │ │ │ ├── samsung-transform.json │ │ │ │ │ ├── sanyo-zio.json │ │ │ │ │ ├── t-mobile-g2.json │ │ │ │ │ └── t-mobile-mytouch-4g.json │ │ │ │ └── scenario.js │ │ │ │ ├── sibbling-routes │ │ │ │ ├── app.css │ │ │ │ ├── app.js │ │ │ │ ├── components │ │ │ │ │ ├── posts │ │ │ │ │ │ └── posts.html │ │ │ │ │ └── users │ │ │ │ │ │ └── users.html │ │ │ │ └── index.html │ │ │ │ └── wizard │ │ │ │ ├── app.js │ │ │ │ ├── components │ │ │ │ ├── end │ │ │ │ │ ├── end.html │ │ │ │ │ └── end.js │ │ │ │ ├── intro │ │ │ │ │ ├── intro.html │ │ │ │ │ └── intro.js │ │ │ │ ├── one │ │ │ │ │ ├── one.html │ │ │ │ │ └── one.js │ │ │ │ ├── three │ │ │ │ │ ├── three.html │ │ │ │ │ └── three.js │ │ │ │ └── two │ │ │ │ │ ├── two.html │ │ │ │ │ └── two.js │ │ │ │ └── index.html │ │ ├── gulpfile.js │ │ ├── index.js │ │ ├── karma.conf.js │ │ ├── karma.es5.conf.js │ │ ├── package.json │ │ ├── protractor.conf.js │ │ ├── protractor.travis.conf.js │ │ ├── scripts │ │ │ ├── angular-modulate.js │ │ │ ├── deploy_docs_to_gh_pages.sh │ │ │ ├── lib │ │ │ │ └── traceur-runtime-custom.js │ │ │ ├── run_protractor_tests.sh │ │ │ ├── sauce_connect_setup.sh │ │ │ ├── test_on_sauce.sh │ │ │ └── wait_for_browser_provider.sh │ │ ├── src │ │ │ ├── grammar.ats │ │ │ ├── pipeline.ats │ │ │ ├── router-directive.es5.js │ │ │ └── router.ats │ │ └── test │ │ │ ├── component-loader.es5.spec.js │ │ │ ├── controller-introspector.es5.spec.js │ │ │ ├── main.js │ │ │ ├── pipeline.es5.spec.js │ │ │ ├── router-viewport.es5.spec.js │ │ │ ├── router.spec.ats │ │ │ └── util.es5.js │ ├── angular │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-csp.css │ │ ├── angular.js │ │ ├── angular.min.js │ │ ├── angular.min.js.gzip │ │ ├── angular.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ ├── angularfire │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── angularfire.js │ │ │ └── angularfire.min.js │ │ └── index.js │ └── firebase │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── firebase-debug.js │ │ └── firebase.js ├── revisionClass │ ├── app.js │ └── index.html ├── revisionDemoNewRoter │ ├── app.js │ ├── components │ │ ├── home │ │ │ └── home.html │ │ └── profile │ │ │ └── profile.html │ └── index.html └── revisionRouter │ ├── app.js │ ├── components │ └── home │ │ ├── home.ctrl.js │ │ └── home.html │ └── index.html ├── NodeJs ├── Class01 - 15Nov │ ├── BasicServer │ │ ├── app.js │ │ └── myJs.js │ ├── ExpressHelloWorld │ │ ├── app.js │ │ └── package.json │ └── TS - SampleApp │ │ ├── .vscode │ │ └── tasks.json │ │ ├── app.js │ │ ├── app.ts │ │ ├── package.json │ │ ├── tsconfig.json │ │ ├── tsd.json │ │ └── typings │ │ ├── express │ │ └── express.d.ts │ │ └── tsd.d.ts ├── Class02 - 22Nov │ ├── BasicHTTPServer │ │ └── App.js │ └── RandomIntegerWithExpress │ │ ├── app.js │ │ ├── myModule.js │ │ └── package.json ├── Class03 - 28Nov │ ├── DemoPromisePattern │ │ ├── AsyncCodeSample01.js │ │ ├── AsyncCodeSample02.js │ │ ├── SyncCodeSample.js │ │ ├── package.json │ │ └── promises │ │ │ ├── app.js │ │ │ └── myModule.js │ └── RoutersAndMounting │ │ ├── .vscode │ │ └── tasks.json │ │ ├── package.json │ │ ├── server.js │ │ ├── server.ts │ │ ├── tsconfig.json │ │ ├── tsd.json │ │ └── typings │ │ ├── express │ │ └── express.d.ts │ │ ├── morgan │ │ └── morgan.d.ts │ │ └── tsd.d.ts ├── Class04 - 29Nov │ ├── ExpressApp │ │ ├── .vscode │ │ │ └── tasks.json │ │ ├── app.js │ │ ├── app.ts │ │ ├── package.json │ │ ├── static │ │ │ ├── css │ │ │ │ └── bootstrap.min.css │ │ │ └── images │ │ │ │ └── logo.png │ │ ├── templates │ │ │ ├── adminTemps │ │ │ │ └── admin.ejs │ │ │ ├── index.ejs │ │ │ └── students │ │ │ │ └── add.ejs │ │ ├── tsconfig.json │ │ ├── tsd.json │ │ └── typings │ │ │ ├── body-parser │ │ │ └── body-parser.d.ts │ │ │ ├── ejs │ │ │ └── ejs.d.ts │ │ │ ├── express │ │ │ └── express.d.ts │ │ │ ├── node │ │ │ └── node.d.ts │ │ │ └── tsd.d.ts │ └── ExpressErrorHandling │ │ ├── .vscode │ │ └── tasks.json │ │ ├── app.js │ │ ├── app.ts │ │ ├── package.json │ │ ├── tsconfig.json │ │ ├── tsd.json │ │ └── typings │ │ ├── express │ │ └── express.d.ts │ │ └── tsd.d.ts └── class05 - 13Dec │ └── mongoDB101 │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── app.js │ ├── app.ts │ ├── dataModel.js │ ├── dataModel.ts │ ├── package.json │ ├── static │ └── app │ │ └── index.html │ ├── tsconfig.json │ ├── tsd.json │ └── typings │ ├── express │ └── express.d.ts │ ├── mongoose │ └── mongoose.d.ts │ ├── node │ └── node.d.ts │ ├── serve-static │ └── serve-static.d.ts │ └── tsd.d.ts └── ionic ├── class1 - 8thAug └── ionic101 │ ├── .bowerrc │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── ionic101.iml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml │ ├── bower.json │ ├── config.xml │ ├── gulpfile.js │ ├── hooks │ ├── README.md │ └── after_prepare │ │ └── 010_add_platform_class.js │ ├── ionic.project │ ├── 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 │ ├── 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 │ ├── scss │ └── ionic.app.scss │ └── www │ ├── css │ └── style.css │ ├── img │ └── ionic.png │ ├── index.html │ ├── js │ └── app.js │ └── lib │ └── ionic │ ├── css │ ├── ionic.css │ └── ionic.min.css │ ├── fonts │ ├── ionicons.eot │ ├── ionicons.svg │ ├── ionicons.ttf │ └── ionicons.woff │ ├── js │ ├── angular-ui │ │ ├── angular-ui-router.js │ │ └── angular-ui-router.min.js │ ├── angular │ │ ├── angular-animate.js │ │ ├── angular-animate.min.js │ │ ├── angular-resource.js │ │ ├── angular-resource.min.js │ │ ├── angular-sanitize.js │ │ ├── angular-sanitize.min.js │ │ ├── angular.js │ │ └── angular.min.js │ ├── ionic-angular.js │ ├── ionic-angular.min.js │ ├── ionic.bundle.js │ ├── ionic.bundle.min.js │ ├── ionic.js │ └── ionic.min.js │ ├── scss │ ├── _action-sheet.scss │ ├── _animations.scss │ ├── _backdrop.scss │ ├── _badge.scss │ ├── _bar.scss │ ├── _button-bar.scss │ ├── _button.scss │ ├── _checkbox.scss │ ├── _form.scss │ ├── _grid.scss │ ├── _items.scss │ ├── _list.scss │ ├── _loading.scss │ ├── _menu.scss │ ├── _mixins.scss │ ├── _modal.scss │ ├── _platform.scss │ ├── _popover.scss │ ├── _popup.scss │ ├── _progress.scss │ ├── _radio.scss │ ├── _range.scss │ ├── _refresher.scss │ ├── _reset.scss │ ├── _scaffolding.scss │ ├── _select.scss │ ├── _slide-box.scss │ ├── _spinner.scss │ ├── _tabs.scss │ ├── _toggle.scss │ ├── _transitions.scss │ ├── _type.scss │ ├── _util.scss │ ├── _variables.scss │ ├── ionic.scss │ └── ionicons │ │ ├── _ionicons-font.scss │ │ ├── _ionicons-icons.scss │ │ ├── _ionicons-variables.scss │ │ └── ionicons.scss │ └── version.json ├── class2 - 9thAug └── myApp │ ├── .bowerrc │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── misc.xml │ ├── modules.xml │ ├── myApp.iml │ ├── vcs.xml │ └── workspace.xml │ ├── bower.json │ ├── config.xml │ ├── gulpfile.js │ ├── hooks │ ├── README.md │ └── after_prepare │ │ └── 010_add_platform_class.js │ ├── ionic.project │ ├── 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 │ ├── 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 │ ├── scss │ └── ionic.app.scss │ └── www │ ├── css │ └── style.css │ ├── img │ └── ionic.png │ ├── index.html │ ├── js │ ├── app.js │ └── controllers.js │ └── lib │ └── ionic │ ├── css │ ├── ionic.css │ └── ionic.min.css │ ├── fonts │ ├── ionicons.eot │ ├── ionicons.svg │ ├── ionicons.ttf │ └── ionicons.woff │ ├── js │ ├── angular-ui │ │ ├── angular-ui-router.js │ │ └── angular-ui-router.min.js │ ├── angular │ │ ├── angular-animate.js │ │ ├── angular-animate.min.js │ │ ├── angular-resource.js │ │ ├── angular-resource.min.js │ │ ├── angular-sanitize.js │ │ ├── angular-sanitize.min.js │ │ ├── angular.js │ │ └── angular.min.js │ ├── ionic-angular.js │ ├── ionic-angular.min.js │ ├── ionic.bundle.js │ ├── ionic.bundle.min.js │ ├── ionic.js │ └── ionic.min.js │ ├── scss │ ├── _action-sheet.scss │ ├── _animations.scss │ ├── _backdrop.scss │ ├── _badge.scss │ ├── _bar.scss │ ├── _button-bar.scss │ ├── _button.scss │ ├── _checkbox.scss │ ├── _form.scss │ ├── _grid.scss │ ├── _items.scss │ ├── _list.scss │ ├── _loading.scss │ ├── _menu.scss │ ├── _mixins.scss │ ├── _modal.scss │ ├── _platform.scss │ ├── _popover.scss │ ├── _popup.scss │ ├── _progress.scss │ ├── _radio.scss │ ├── _range.scss │ ├── _refresher.scss │ ├── _reset.scss │ ├── _scaffolding.scss │ ├── _select.scss │ ├── _slide-box.scss │ ├── _spinner.scss │ ├── _tabs.scss │ ├── _toggle.scss │ ├── _transitions.scss │ ├── _type.scss │ ├── _util.scss │ ├── _variables.scss │ ├── ionic.scss │ └── ionicons │ │ ├── _ionicons-font.scss │ │ ├── _ionicons-icons.scss │ │ ├── _ionicons-variables.scss │ │ └── ionicons.scss │ └── version.json ├── class3 - 16thAug └── resortApp │ ├── .bowerrc │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── misc.xml │ ├── modules.xml │ ├── resortApp.iml │ ├── vcs.xml │ └── workspace.xml │ ├── bower.json │ ├── config.xml │ ├── gulpfile.js │ ├── hooks │ ├── README.md │ └── after_prepare │ │ └── 010_add_platform_class.js │ ├── ionic.project │ ├── package.json │ ├── scss │ └── ionic.app.scss │ └── www │ ├── css │ └── style.css │ ├── img │ └── ionic.png │ ├── index.html │ ├── js │ └── app.js │ ├── lib │ └── ionic │ │ ├── css │ │ ├── ionic.css │ │ └── ionic.min.css │ │ ├── fonts │ │ ├── ionicons.eot │ │ ├── ionicons.svg │ │ ├── ionicons.ttf │ │ └── ionicons.woff │ │ ├── js │ │ ├── angular-ui │ │ │ ├── angular-ui-router.js │ │ │ └── angular-ui-router.min.js │ │ ├── angular │ │ │ ├── angular-animate.js │ │ │ ├── angular-animate.min.js │ │ │ ├── angular-resource.js │ │ │ ├── angular-resource.min.js │ │ │ ├── angular-sanitize.js │ │ │ ├── angular-sanitize.min.js │ │ │ ├── angular.js │ │ │ └── angular.min.js │ │ ├── ionic-angular.js │ │ ├── ionic-angular.min.js │ │ ├── ionic.bundle.js │ │ ├── ionic.bundle.min.js │ │ ├── ionic.js │ │ └── ionic.min.js │ │ ├── scss │ │ ├── _action-sheet.scss │ │ ├── _animations.scss │ │ ├── _backdrop.scss │ │ ├── _badge.scss │ │ ├── _bar.scss │ │ ├── _button-bar.scss │ │ ├── _button.scss │ │ ├── _checkbox.scss │ │ ├── _form.scss │ │ ├── _grid.scss │ │ ├── _items.scss │ │ ├── _list.scss │ │ ├── _loading.scss │ │ ├── _menu.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _platform.scss │ │ ├── _popover.scss │ │ ├── _popup.scss │ │ ├── _progress.scss │ │ ├── _radio.scss │ │ ├── _range.scss │ │ ├── _refresher.scss │ │ ├── _reset.scss │ │ ├── _scaffolding.scss │ │ ├── _select.scss │ │ ├── _slide-box.scss │ │ ├── _spinner.scss │ │ ├── _tabs.scss │ │ ├── _toggle.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _util.scss │ │ ├── _variables.scss │ │ ├── ionic.scss │ │ └── ionicons │ │ │ ├── _ionicons-font.scss │ │ │ ├── _ionicons-icons.scss │ │ │ ├── _ionicons-variables.scss │ │ │ └── ionicons.scss │ │ └── version.json │ └── templates │ └── landingPage.html ├── class4 - 23rdAug └── bitcoinApp │ ├── .bowerrc │ ├── .editorconfig │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── bitcoinApp.iml │ ├── encodings.xml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml │ ├── bower.json │ ├── config.xml │ ├── gulpfile.js │ ├── hooks │ ├── README.md │ └── after_prepare │ │ └── 010_add_platform_class.js │ ├── ionic.project │ ├── package.json │ ├── scss │ └── ionic.app.scss │ └── www │ ├── css │ └── style.css │ ├── img │ └── ionic.png │ ├── index.html │ ├── js │ ├── allControllers.js │ └── app.js │ ├── lib │ └── ionic │ │ ├── css │ │ ├── ionic.css │ │ └── ionic.min.css │ │ ├── fonts │ │ ├── ionicons.eot │ │ ├── ionicons.svg │ │ ├── ionicons.ttf │ │ └── ionicons.woff │ │ ├── js │ │ ├── angular-ui │ │ │ ├── angular-ui-router.js │ │ │ └── angular-ui-router.min.js │ │ ├── angular │ │ │ ├── angular-animate.js │ │ │ ├── angular-animate.min.js │ │ │ ├── angular-resource.js │ │ │ ├── angular-resource.min.js │ │ │ ├── angular-sanitize.js │ │ │ ├── angular-sanitize.min.js │ │ │ ├── angular.js │ │ │ └── angular.min.js │ │ ├── ionic-angular.js │ │ ├── ionic-angular.min.js │ │ ├── ionic.bundle.js │ │ ├── ionic.bundle.min.js │ │ ├── ionic.js │ │ └── ionic.min.js │ │ ├── scss │ │ ├── _action-sheet.scss │ │ ├── _animations.scss │ │ ├── _backdrop.scss │ │ ├── _badge.scss │ │ ├── _bar.scss │ │ ├── _button-bar.scss │ │ ├── _button.scss │ │ ├── _checkbox.scss │ │ ├── _form.scss │ │ ├── _grid.scss │ │ ├── _items.scss │ │ ├── _list.scss │ │ ├── _loading.scss │ │ ├── _menu.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _platform.scss │ │ ├── _popover.scss │ │ ├── _popup.scss │ │ ├── _progress.scss │ │ ├── _radio.scss │ │ ├── _range.scss │ │ ├── _refresher.scss │ │ ├── _reset.scss │ │ ├── _scaffolding.scss │ │ ├── _select.scss │ │ ├── _slide-box.scss │ │ ├── _spinner.scss │ │ ├── _tabs.scss │ │ ├── _toggle.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _util.scss │ │ ├── _variables.scss │ │ ├── ionic.scss │ │ └── ionicons │ │ │ ├── _ionicons-font.scss │ │ │ ├── _ionicons-icons.scss │ │ │ ├── _ionicons-variables.scss │ │ │ └── ionicons.scss │ │ └── version.json │ └── views │ ├── currencies.html │ ├── popup.html │ ├── rates.html │ └── tabs.html ├── class5 - 30thAug └── trainerApp │ ├── .bowerrc │ ├── .editorconfig │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── encodings.xml │ ├── misc.xml │ ├── modules.xml │ ├── trainerApp.iml │ ├── vcs.xml │ └── workspace.xml │ ├── bower.json │ ├── config.xml │ ├── gulpfile.js │ ├── hooks │ ├── README.md │ └── after_prepare │ │ └── 010_add_platform_class.js │ ├── ionic.project │ ├── package.json │ ├── scss │ └── ionic.app.scss │ └── www │ ├── css │ └── style.css │ ├── img │ └── ionic.png │ ├── index.html │ ├── js │ ├── app.js │ └── controllers.js │ ├── lib │ └── ionic │ │ ├── css │ │ ├── ionic.css │ │ └── ionic.min.css │ │ ├── fonts │ │ ├── ionicons.eot │ │ ├── ionicons.svg │ │ ├── ionicons.ttf │ │ └── ionicons.woff │ │ ├── js │ │ ├── angular-ui │ │ │ ├── angular-ui-router.js │ │ │ └── angular-ui-router.min.js │ │ ├── angular │ │ │ ├── angular-animate.js │ │ │ ├── angular-animate.min.js │ │ │ ├── angular-resource.js │ │ │ ├── angular-resource.min.js │ │ │ ├── angular-sanitize.js │ │ │ ├── angular-sanitize.min.js │ │ │ ├── angular.js │ │ │ └── angular.min.js │ │ ├── ionic-angular.js │ │ ├── ionic-angular.min.js │ │ ├── ionic.bundle.js │ │ ├── ionic.bundle.min.js │ │ ├── ionic.js │ │ └── ionic.min.js │ │ ├── scss │ │ ├── _action-sheet.scss │ │ ├── _animations.scss │ │ ├── _backdrop.scss │ │ ├── _badge.scss │ │ ├── _bar.scss │ │ ├── _button-bar.scss │ │ ├── _button.scss │ │ ├── _checkbox.scss │ │ ├── _form.scss │ │ ├── _grid.scss │ │ ├── _items.scss │ │ ├── _list.scss │ │ ├── _loading.scss │ │ ├── _menu.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _platform.scss │ │ ├── _popover.scss │ │ ├── _popup.scss │ │ ├── _progress.scss │ │ ├── _radio.scss │ │ ├── _range.scss │ │ ├── _refresher.scss │ │ ├── _reset.scss │ │ ├── _scaffolding.scss │ │ ├── _select.scss │ │ ├── _slide-box.scss │ │ ├── _spinner.scss │ │ ├── _tabs.scss │ │ ├── _toggle.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _util.scss │ │ ├── _variables.scss │ │ ├── ionic.scss │ │ └── ionicons │ │ │ ├── _ionicons-font.scss │ │ │ ├── _ionicons-icons.scss │ │ │ ├── _ionicons-variables.scss │ │ │ └── ionicons.scss │ │ └── version.json │ └── views │ ├── MainModal.html │ └── home.html ├── class6 - 6thSept └── demoplugins │ ├── .bowerrc │ ├── .editorconfig │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── demoplugins.iml │ ├── encodings.xml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml │ ├── bower.json │ ├── config.xml │ ├── gulpfile.js │ ├── hooks │ ├── README.md │ └── after_prepare │ │ └── 010_add_platform_class.js │ ├── ionic.project │ ├── 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 │ ├── 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 │ ├── scss │ └── ionic.app.scss │ └── www │ ├── css │ └── style.css │ ├── img │ └── ionic.png │ ├── index.html │ ├── js │ └── app.js │ └── lib │ ├── angular-animate │ ├── .bower.json │ ├── README.md │ ├── angular-animate.js │ ├── angular-animate.min.js │ ├── angular-animate.min.js.map │ ├── bower.json │ ├── index.js │ └── package.json │ ├── angular-sanitize │ ├── .bower.json │ ├── README.md │ ├── angular-sanitize.js │ ├── angular-sanitize.min.js │ ├── angular-sanitize.min.js.map │ ├── bower.json │ ├── index.js │ └── package.json │ ├── angular-ui-router │ ├── .bower.json │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── api │ │ └── angular-ui-router.d.ts │ ├── bower.json │ ├── release │ │ ├── angular-ui-router.js │ │ └── angular-ui-router.min.js │ └── src │ │ ├── common.js │ │ ├── resolve.js │ │ ├── state.js │ │ ├── stateDirectives.js │ │ ├── stateFilters.js │ │ ├── templateFactory.js │ │ ├── urlMatcherFactory.js │ │ ├── urlRouter.js │ │ ├── view.js │ │ ├── viewDirective.js │ │ └── viewScroll.js │ ├── angular │ ├── .bower.json │ ├── README.md │ ├── angular-csp.css │ ├── angular.js │ ├── angular.min.js │ ├── angular.min.js.gzip │ ├── angular.min.js.map │ ├── bower.json │ ├── index.js │ └── package.json │ ├── ionic │ ├── .bower.json │ ├── README.md │ ├── bower.json │ ├── css │ │ ├── ionic.css │ │ └── ionic.min.css │ ├── fonts │ │ ├── ionicons.eot │ │ ├── ionicons.svg │ │ ├── ionicons.ttf │ │ └── ionicons.woff │ ├── js │ │ ├── ionic-angular.js │ │ ├── ionic-angular.min.js │ │ ├── ionic.bundle.js │ │ ├── ionic.bundle.min.js │ │ ├── ionic.js │ │ └── ionic.min.js │ └── scss │ │ ├── _action-sheet.scss │ │ ├── _animations.scss │ │ ├── _backdrop.scss │ │ ├── _badge.scss │ │ ├── _bar.scss │ │ ├── _button-bar.scss │ │ ├── _button.scss │ │ ├── _checkbox.scss │ │ ├── _form.scss │ │ ├── _grid.scss │ │ ├── _items.scss │ │ ├── _list.scss │ │ ├── _loaders.scss │ │ ├── _loading.scss │ │ ├── _menu.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _platform.scss │ │ ├── _popover.scss │ │ ├── _popup.scss │ │ ├── _progress.scss │ │ ├── _radio.scss │ │ ├── _range.scss │ │ ├── _refresher.scss │ │ ├── _reset.scss │ │ ├── _scaffolding.scss │ │ ├── _select.scss │ │ ├── _slide-box.scss │ │ ├── _spinner.scss │ │ ├── _split-pane.scss │ │ ├── _tabs.scss │ │ ├── _toggle.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _util.scss │ │ ├── _variables.scss │ │ ├── ionic.scss │ │ └── ionicons │ │ ├── _ionicons-animation.scss │ │ ├── _ionicons-font.scss │ │ ├── _ionicons-icons.scss │ │ ├── _ionicons-variables.scss │ │ └── ionicons.scss │ └── ngCordova │ ├── .bower.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── dist │ ├── ng-cordova-mocks.js │ ├── ng-cordova-mocks.min.js │ ├── ng-cordova.js │ └── ng-cordova.min.js │ └── package.json └── class7 - 13thSept └── demoPlugins2 ├── .bowerrc ├── .editorconfig ├── .gitignore ├── .idea ├── .name ├── demoPlugins2.iml ├── encodings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── bower.json ├── config.xml ├── gulpfile.js ├── hooks ├── README.md └── after_prepare │ └── 010_add_platform_class.js ├── ionic.project ├── 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 ├── 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 ├── scss └── ionic.app.scss └── www ├── css └── style.css ├── img └── ionic.png ├── index.html ├── js └── app.js ├── lib ├── angular-animate │ ├── .bower.json │ ├── README.md │ ├── angular-animate.js │ ├── angular-animate.min.js │ ├── angular-animate.min.js.map │ ├── bower.json │ ├── index.js │ └── package.json ├── angular-sanitize │ ├── .bower.json │ ├── README.md │ ├── angular-sanitize.js │ ├── angular-sanitize.min.js │ ├── angular-sanitize.min.js.map │ ├── bower.json │ ├── index.js │ └── package.json ├── angular-ui-router │ ├── .bower.json │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── api │ │ └── angular-ui-router.d.ts │ ├── bower.json │ ├── release │ │ ├── angular-ui-router.js │ │ └── angular-ui-router.min.js │ └── src │ │ ├── common.js │ │ ├── resolve.js │ │ ├── state.js │ │ ├── stateDirectives.js │ │ ├── stateFilters.js │ │ ├── templateFactory.js │ │ ├── urlMatcherFactory.js │ │ ├── urlRouter.js │ │ ├── view.js │ │ ├── viewDirective.js │ │ └── viewScroll.js ├── angular │ ├── .bower.json │ ├── README.md │ ├── angular-csp.css │ ├── angular.js │ ├── angular.min.js │ ├── angular.min.js.gzip │ ├── angular.min.js.map │ ├── bower.json │ ├── index.js │ └── package.json ├── ionic │ ├── .bower.json │ ├── README.md │ ├── bower.json │ ├── css │ │ ├── ionic.css │ │ └── ionic.min.css │ ├── fonts │ │ ├── ionicons.eot │ │ ├── ionicons.svg │ │ ├── ionicons.ttf │ │ └── ionicons.woff │ ├── js │ │ ├── ionic-angular.js │ │ ├── ionic-angular.min.js │ │ ├── ionic.bundle.js │ │ ├── ionic.bundle.min.js │ │ ├── ionic.js │ │ └── ionic.min.js │ └── scss │ │ ├── _action-sheet.scss │ │ ├── _animations.scss │ │ ├── _backdrop.scss │ │ ├── _badge.scss │ │ ├── _bar.scss │ │ ├── _button-bar.scss │ │ ├── _button.scss │ │ ├── _checkbox.scss │ │ ├── _form.scss │ │ ├── _grid.scss │ │ ├── _items.scss │ │ ├── _list.scss │ │ ├── _loaders.scss │ │ ├── _loading.scss │ │ ├── _menu.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _platform.scss │ │ ├── _popover.scss │ │ ├── _popup.scss │ │ ├── _progress.scss │ │ ├── _radio.scss │ │ ├── _range.scss │ │ ├── _refresher.scss │ │ ├── _reset.scss │ │ ├── _scaffolding.scss │ │ ├── _select.scss │ │ ├── _slide-box.scss │ │ ├── _spinner.scss │ │ ├── _split-pane.scss │ │ ├── _tabs.scss │ │ ├── _toggle.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _util.scss │ │ ├── _variables.scss │ │ ├── ionic.scss │ │ └── ionicons │ │ ├── _ionicons-animation.scss │ │ ├── _ionicons-font.scss │ │ ├── _ionicons-icons.scss │ │ ├── _ionicons-variables.scss │ │ └── ionicons.scss └── ngCordova │ ├── .bower.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── dist │ ├── ng-cordova-mocks.js │ ├── ng-cordova-mocks.min.js │ ├── ng-cordova.js │ └── ng-cordova.min.js │ └── package.json └── templates └── flashLightView.html /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.idea -------------------------------------------------------------------------------- /10thMay2015/.idea/.name: -------------------------------------------------------------------------------- 1 | 10thMay2015 -------------------------------------------------------------------------------- /10thMay2015/.idea/10thMay2015.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/10thMay2015/.idea/10thMay2015.iml -------------------------------------------------------------------------------- /10thMay2015/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/10thMay2015/.idea/misc.xml -------------------------------------------------------------------------------- /10thMay2015/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/10thMay2015/.idea/modules.xml -------------------------------------------------------------------------------- /10thMay2015/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/10thMay2015/.idea/vcs.xml -------------------------------------------------------------------------------- /10thMay2015/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/10thMay2015/.idea/workspace.xml -------------------------------------------------------------------------------- /10thMay2015/AngularJSModuleComponents/demoFactories/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/10thMay2015/AngularJSModuleComponents/demoFactories/index.html -------------------------------------------------------------------------------- /10thMay2015/AngularJSModuleComponents/demoFactories/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/10thMay2015/AngularJSModuleComponents/demoFactories/index.js -------------------------------------------------------------------------------- /10thMay2015/AngularJSModuleComponents/demoServices/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/10thMay2015/AngularJSModuleComponents/demoServices/index.html -------------------------------------------------------------------------------- /10thMay2015/AngularJSModuleComponents/demoServices/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/10thMay2015/AngularJSModuleComponents/demoServices/index.js -------------------------------------------------------------------------------- /12thApril2015/.idea/.name: -------------------------------------------------------------------------------- 1 | 12thApril2015 -------------------------------------------------------------------------------- /12thApril2015/.idea/12thApril2015.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thApril2015/.idea/12thApril2015.iml -------------------------------------------------------------------------------- /12thApril2015/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thApril2015/.idea/misc.xml -------------------------------------------------------------------------------- /12thApril2015/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thApril2015/.idea/modules.xml -------------------------------------------------------------------------------- /12thApril2015/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thApril2015/.idea/vcs.xml -------------------------------------------------------------------------------- /12thApril2015/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thApril2015/.idea/workspace.xml -------------------------------------------------------------------------------- /12thApril2015/EventBubbling/eventsBubbling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thApril2015/EventBubbling/eventsBubbling.html -------------------------------------------------------------------------------- /12thApril2015/EventBubbling/eventsBubbling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thApril2015/EventBubbling/eventsBubbling.js -------------------------------------------------------------------------------- /12thApril2015/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thApril2015/bower.json -------------------------------------------------------------------------------- /12thApril2015/bower_components/angularjs/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thApril2015/bower_components/angularjs/.bower.json -------------------------------------------------------------------------------- /12thApril2015/bower_components/angularjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thApril2015/bower_components/angularjs/README.md -------------------------------------------------------------------------------- /12thApril2015/bower_components/angularjs/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thApril2015/bower_components/angularjs/angular-csp.css -------------------------------------------------------------------------------- /12thApril2015/bower_components/angularjs/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thApril2015/bower_components/angularjs/angular.js -------------------------------------------------------------------------------- /12thApril2015/bower_components/angularjs/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thApril2015/bower_components/angularjs/angular.min.js -------------------------------------------------------------------------------- /12thApril2015/bower_components/angularjs/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thApril2015/bower_components/angularjs/angular.min.js.gzip -------------------------------------------------------------------------------- /12thApril2015/bower_components/angularjs/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thApril2015/bower_components/angularjs/angular.min.js.map -------------------------------------------------------------------------------- /12thApril2015/bower_components/angularjs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thApril2015/bower_components/angularjs/bower.json -------------------------------------------------------------------------------- /12thApril2015/bower_components/angularjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thApril2015/bower_components/angularjs/index.js -------------------------------------------------------------------------------- /12thApril2015/bower_components/angularjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thApril2015/bower_components/angularjs/package.json -------------------------------------------------------------------------------- /12thApril2015/controllerInheritence/Inheritence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thApril2015/controllerInheritence/Inheritence.js -------------------------------------------------------------------------------- /12thApril2015/controllerInheritence/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thApril2015/controllerInheritence/index.html -------------------------------------------------------------------------------- /12thApril2015/events/event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thApril2015/events/event.html -------------------------------------------------------------------------------- /12thApril2015/events/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thApril2015/events/event.js -------------------------------------------------------------------------------- /12thJuly2015/.idea/.name: -------------------------------------------------------------------------------- 1 | 12thJuly2015 -------------------------------------------------------------------------------- /12thJuly2015/.idea/12thJuly2015.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thJuly2015/.idea/12thJuly2015.iml -------------------------------------------------------------------------------- /12thJuly2015/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thJuly2015/.idea/misc.xml -------------------------------------------------------------------------------- /12thJuly2015/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thJuly2015/.idea/modules.xml -------------------------------------------------------------------------------- /12thJuly2015/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thJuly2015/.idea/vcs.xml -------------------------------------------------------------------------------- /12thJuly2015/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thJuly2015/.idea/workspace.xml -------------------------------------------------------------------------------- /12thJuly2015/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thJuly2015/bower.json -------------------------------------------------------------------------------- /12thJuly2015/bower_components/angularjs/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thJuly2015/bower_components/angularjs/.bower.json -------------------------------------------------------------------------------- /12thJuly2015/bower_components/angularjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thJuly2015/bower_components/angularjs/README.md -------------------------------------------------------------------------------- /12thJuly2015/bower_components/angularjs/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thJuly2015/bower_components/angularjs/angular-csp.css -------------------------------------------------------------------------------- /12thJuly2015/bower_components/angularjs/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thJuly2015/bower_components/angularjs/angular.js -------------------------------------------------------------------------------- /12thJuly2015/bower_components/angularjs/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thJuly2015/bower_components/angularjs/angular.min.js -------------------------------------------------------------------------------- /12thJuly2015/bower_components/angularjs/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thJuly2015/bower_components/angularjs/angular.min.js.gzip -------------------------------------------------------------------------------- /12thJuly2015/bower_components/angularjs/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thJuly2015/bower_components/angularjs/angular.min.js.map -------------------------------------------------------------------------------- /12thJuly2015/bower_components/angularjs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thJuly2015/bower_components/angularjs/bower.json -------------------------------------------------------------------------------- /12thJuly2015/bower_components/angularjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thJuly2015/bower_components/angularjs/index.js -------------------------------------------------------------------------------- /12thJuly2015/bower_components/angularjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thJuly2015/bower_components/angularjs/package.json -------------------------------------------------------------------------------- /12thJuly2015/customDirectives101/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thJuly2015/customDirectives101/index.html -------------------------------------------------------------------------------- /12thJuly2015/customDirectives101/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thJuly2015/customDirectives101/index.js -------------------------------------------------------------------------------- /12thJuly2015/customDirectives201/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thJuly2015/customDirectives201/index.html -------------------------------------------------------------------------------- /12thJuly2015/customDirectives201/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thJuly2015/customDirectives201/index.js -------------------------------------------------------------------------------- /12thJuly2015/customDirectives201/templates/messageBox.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/12thJuly2015/customDirectives201/templates/messageBox.tpl.html -------------------------------------------------------------------------------- /17thMay2015/.idea/.name: -------------------------------------------------------------------------------- 1 | 17thMay2015 -------------------------------------------------------------------------------- /17thMay2015/.idea/17thMay2015.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/.idea/17thMay2015.iml -------------------------------------------------------------------------------- /17thMay2015/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/.idea/misc.xml -------------------------------------------------------------------------------- /17thMay2015/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/.idea/modules.xml -------------------------------------------------------------------------------- /17thMay2015/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/.idea/vcs.xml -------------------------------------------------------------------------------- /17thMay2015/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/.idea/workspace.xml -------------------------------------------------------------------------------- /17thMay2015/DemoControllerAsSyntax/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/DemoControllerAsSyntax/index.html -------------------------------------------------------------------------------- /17thMay2015/DemoControllerAsSyntax/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/DemoControllerAsSyntax/index.js -------------------------------------------------------------------------------- /17thMay2015/DemoNewRouter/components/about_us/about_us.html: -------------------------------------------------------------------------------- 1 | Hello from About Us Page -------------------------------------------------------------------------------- /17thMay2015/DemoNewRouter/components/about_us/about_us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/DemoNewRouter/components/about_us/about_us.js -------------------------------------------------------------------------------- /17thMay2015/DemoNewRouter/components/home/home.html: -------------------------------------------------------------------------------- 1 | Hello from Home Component. -------------------------------------------------------------------------------- /17thMay2015/DemoNewRouter/components/home/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/DemoNewRouter/components/home/home.js -------------------------------------------------------------------------------- /17thMay2015/DemoNewRouter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/DemoNewRouter/index.html -------------------------------------------------------------------------------- /17thMay2015/DemoNewRouter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/DemoNewRouter/index.js -------------------------------------------------------------------------------- /17thMay2015/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower.json -------------------------------------------------------------------------------- /17thMay2015/bower_components/angular-new-router/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angular-new-router/.bower.json -------------------------------------------------------------------------------- /17thMay2015/bower_components/angular-new-router/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "bower_components" 3 | } -------------------------------------------------------------------------------- /17thMay2015/bower_components/angular-new-router/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angular-new-router/.editorconfig -------------------------------------------------------------------------------- /17thMay2015/bower_components/angular-new-router/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angular-new-router/.gitignore -------------------------------------------------------------------------------- /17thMay2015/bower_components/angular-new-router/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angular-new-router/.npmignore -------------------------------------------------------------------------------- /17thMay2015/bower_components/angular-new-router/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angular-new-router/.travis.yml -------------------------------------------------------------------------------- /17thMay2015/bower_components/angular-new-router/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angular-new-router/ARCHITECTURE.md -------------------------------------------------------------------------------- /17thMay2015/bower_components/angular-new-router/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angular-new-router/CHANGELOG.md -------------------------------------------------------------------------------- /17thMay2015/bower_components/angular-new-router/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angular-new-router/CONTRIBUTING.md -------------------------------------------------------------------------------- /17thMay2015/bower_components/angular-new-router/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angular-new-router/LICENSE -------------------------------------------------------------------------------- /17thMay2015/bower_components/angular-new-router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angular-new-router/README.md -------------------------------------------------------------------------------- /17thMay2015/bower_components/angular-new-router/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angular-new-router/config.json -------------------------------------------------------------------------------- /17thMay2015/bower_components/angular-new-router/docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angular-new-router/docs/style.css -------------------------------------------------------------------------------- /17thMay2015/bower_components/angular-new-router/examples/angular-1/phone-kitten/css/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /17thMay2015/bower_components/angular-new-router/examples/angular-1/phone-kitten/img/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /17thMay2015/bower_components/angular-new-router/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angular-new-router/gulpfile.js -------------------------------------------------------------------------------- /17thMay2015/bower_components/angular-new-router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angular-new-router/index.js -------------------------------------------------------------------------------- /17thMay2015/bower_components/angular-new-router/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angular-new-router/karma.conf.js -------------------------------------------------------------------------------- /17thMay2015/bower_components/angular-new-router/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angular-new-router/package.json -------------------------------------------------------------------------------- /17thMay2015/bower_components/angular-new-router/src/grammar.ats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angular-new-router/src/grammar.ats -------------------------------------------------------------------------------- /17thMay2015/bower_components/angular-new-router/src/router.ats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angular-new-router/src/router.ats -------------------------------------------------------------------------------- /17thMay2015/bower_components/angular-new-router/test/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angular-new-router/test/main.js -------------------------------------------------------------------------------- /17thMay2015/bower_components/angularjs/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angularjs/.bower.json -------------------------------------------------------------------------------- /17thMay2015/bower_components/angularjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angularjs/README.md -------------------------------------------------------------------------------- /17thMay2015/bower_components/angularjs/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angularjs/angular-csp.css -------------------------------------------------------------------------------- /17thMay2015/bower_components/angularjs/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angularjs/angular.js -------------------------------------------------------------------------------- /17thMay2015/bower_components/angularjs/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angularjs/angular.min.js -------------------------------------------------------------------------------- /17thMay2015/bower_components/angularjs/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angularjs/angular.min.js.gzip -------------------------------------------------------------------------------- /17thMay2015/bower_components/angularjs/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angularjs/angular.min.js.map -------------------------------------------------------------------------------- /17thMay2015/bower_components/angularjs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angularjs/bower.json -------------------------------------------------------------------------------- /17thMay2015/bower_components/angularjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angularjs/index.js -------------------------------------------------------------------------------- /17thMay2015/bower_components/angularjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/17thMay2015/bower_components/angularjs/package.json -------------------------------------------------------------------------------- /19thApril2015/.idea/.name: -------------------------------------------------------------------------------- 1 | 19thApril2015 -------------------------------------------------------------------------------- /19thApril2015/.idea/19thApril2015.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/19thApril2015/.idea/19thApril2015.iml -------------------------------------------------------------------------------- /19thApril2015/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/19thApril2015/.idea/misc.xml -------------------------------------------------------------------------------- /19thApril2015/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/19thApril2015/.idea/modules.xml -------------------------------------------------------------------------------- /19thApril2015/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/19thApril2015/.idea/vcs.xml -------------------------------------------------------------------------------- /19thApril2015/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/19thApril2015/.idea/workspace.xml -------------------------------------------------------------------------------- /19thApril2015/DemoServices/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/19thApril2015/DemoServices/bower.json -------------------------------------------------------------------------------- /19thApril2015/DemoServices/bower_components/angularjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/19thApril2015/DemoServices/bower_components/angularjs/README.md -------------------------------------------------------------------------------- /19thApril2015/DemoServices/bower_components/angularjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/19thApril2015/DemoServices/bower_components/angularjs/index.js -------------------------------------------------------------------------------- /19thApril2015/DemoServices/demoService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/19thApril2015/DemoServices/demoService.js -------------------------------------------------------------------------------- /19thApril2015/DemoServices/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/19thApril2015/DemoServices/index.html -------------------------------------------------------------------------------- /19thApril2015/demoAngularMaterial/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/19thApril2015/demoAngularMaterial/bower.json -------------------------------------------------------------------------------- /19thApril2015/demoAngularMaterial/bower_components/angular-aria/index.js: -------------------------------------------------------------------------------- 1 | require('./angular-aria'); 2 | module.exports = 'ngAria'; 3 | -------------------------------------------------------------------------------- /19thApril2015/demoAngularMaterial/bower_components/angular-material/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.sw* 3 | .DS_STORE 4 | /.idea/ 5 | default-theme.css 6 | -------------------------------------------------------------------------------- /19thApril2015/demoAngularMaterial/bower_components/angular-material/demos/gridList/demoResponsiveUsage/style.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /19thApril2015/demoAngularMaterial/bower_components/angular-material/demos/input/demoIcons/style.scss: -------------------------------------------------------------------------------- 1 | .inputIconDemo { 2 | min-height:48px; 3 | } 4 | -------------------------------------------------------------------------------- /19thApril2015/demoAngularMaterial/demoNGMaterial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/19thApril2015/demoAngularMaterial/demoNGMaterial.js -------------------------------------------------------------------------------- /19thApril2015/demoAngularMaterial/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/19thApril2015/demoAngularMaterial/index.html -------------------------------------------------------------------------------- /21stJune2015/.idea/.name: -------------------------------------------------------------------------------- 1 | 21stJune2015 -------------------------------------------------------------------------------- /21stJune2015/.idea/21stJune2015.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/.idea/21stJune2015.iml -------------------------------------------------------------------------------- /21stJune2015/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/.idea/misc.xml -------------------------------------------------------------------------------- /21stJune2015/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/.idea/modules.xml -------------------------------------------------------------------------------- /21stJune2015/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/.idea/vcs.xml -------------------------------------------------------------------------------- /21stJune2015/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/.idea/workspace.xml -------------------------------------------------------------------------------- /21stJune2015/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/bower.json -------------------------------------------------------------------------------- /21stJune2015/bower_components/angular/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/bower_components/angular/.bower.json -------------------------------------------------------------------------------- /21stJune2015/bower_components/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/bower_components/angular/README.md -------------------------------------------------------------------------------- /21stJune2015/bower_components/angular/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/bower_components/angular/angular-csp.css -------------------------------------------------------------------------------- /21stJune2015/bower_components/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/bower_components/angular/angular.js -------------------------------------------------------------------------------- /21stJune2015/bower_components/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/bower_components/angular/angular.min.js -------------------------------------------------------------------------------- /21stJune2015/bower_components/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/bower_components/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /21stJune2015/bower_components/angular/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/bower_components/angular/angular.min.js.map -------------------------------------------------------------------------------- /21stJune2015/bower_components/angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/bower_components/angular/bower.json -------------------------------------------------------------------------------- /21stJune2015/bower_components/angular/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/bower_components/angular/index.js -------------------------------------------------------------------------------- /21stJune2015/bower_components/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/bower_components/angular/package.json -------------------------------------------------------------------------------- /21stJune2015/bower_components/angularfire/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/bower_components/angularfire/.bower.json -------------------------------------------------------------------------------- /21stJune2015/bower_components/angularfire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/bower_components/angularfire/LICENSE -------------------------------------------------------------------------------- /21stJune2015/bower_components/angularfire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/bower_components/angularfire/README.md -------------------------------------------------------------------------------- /21stJune2015/bower_components/angularfire/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/bower_components/angularfire/bower.json -------------------------------------------------------------------------------- /21stJune2015/bower_components/angularfire/dist/angularfire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/bower_components/angularfire/dist/angularfire.js -------------------------------------------------------------------------------- /21stJune2015/bower_components/angularfire/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/bower_components/angularfire/index.js -------------------------------------------------------------------------------- /21stJune2015/bower_components/firebase/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/bower_components/firebase/.bower.json -------------------------------------------------------------------------------- /21stJune2015/bower_components/firebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/bower_components/firebase/README.md -------------------------------------------------------------------------------- /21stJune2015/bower_components/firebase/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/bower_components/firebase/bower.json -------------------------------------------------------------------------------- /21stJune2015/bower_components/firebase/firebase-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/bower_components/firebase/firebase-debug.js -------------------------------------------------------------------------------- /21stJune2015/bower_components/firebase/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/bower_components/firebase/firebase.js -------------------------------------------------------------------------------- /21stJune2015/demoFirebase1/demoFirebase1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/demoFirebase1/demoFirebase1.js -------------------------------------------------------------------------------- /21stJune2015/demoFirebase1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/21stJune2015/demoFirebase1/index.html -------------------------------------------------------------------------------- /24thMay2015/.idea/.name: -------------------------------------------------------------------------------- 1 | 24thMay2015 -------------------------------------------------------------------------------- /24thMay2015/.idea/24thMay2015.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/.idea/24thMay2015.iml -------------------------------------------------------------------------------- /24thMay2015/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/.idea/misc.xml -------------------------------------------------------------------------------- /24thMay2015/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/.idea/modules.xml -------------------------------------------------------------------------------- /24thMay2015/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/.idea/vcs.xml -------------------------------------------------------------------------------- /24thMay2015/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/.idea/workspace.xml -------------------------------------------------------------------------------- /24thMay2015/DemoFirebaseAuthentication/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/DemoFirebaseAuthentication/index.html -------------------------------------------------------------------------------- /24thMay2015/DemoFirebaseAuthentication/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/DemoFirebaseAuthentication/index.js -------------------------------------------------------------------------------- /24thMay2015/DemoFirebaseAuthentication/service_user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/DemoFirebaseAuthentication/service_user.js -------------------------------------------------------------------------------- /24thMay2015/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower.json -------------------------------------------------------------------------------- /24thMay2015/bower_components/angular/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/angular/.bower.json -------------------------------------------------------------------------------- /24thMay2015/bower_components/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/angular/README.md -------------------------------------------------------------------------------- /24thMay2015/bower_components/angular/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/angular/angular-csp.css -------------------------------------------------------------------------------- /24thMay2015/bower_components/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/angular/angular.js -------------------------------------------------------------------------------- /24thMay2015/bower_components/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/angular/angular.min.js -------------------------------------------------------------------------------- /24thMay2015/bower_components/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /24thMay2015/bower_components/angular/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/angular/angular.min.js.map -------------------------------------------------------------------------------- /24thMay2015/bower_components/angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/angular/bower.json -------------------------------------------------------------------------------- /24thMay2015/bower_components/angular/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/angular/index.js -------------------------------------------------------------------------------- /24thMay2015/bower_components/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/angular/package.json -------------------------------------------------------------------------------- /24thMay2015/bower_components/angularfire/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/angularfire/.bower.json -------------------------------------------------------------------------------- /24thMay2015/bower_components/angularfire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/angularfire/LICENSE -------------------------------------------------------------------------------- /24thMay2015/bower_components/angularfire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/angularfire/README.md -------------------------------------------------------------------------------- /24thMay2015/bower_components/angularfire/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/angularfire/bower.json -------------------------------------------------------------------------------- /24thMay2015/bower_components/angularfire/dist/angularfire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/angularfire/dist/angularfire.js -------------------------------------------------------------------------------- /24thMay2015/bower_components/angularfire/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/angularfire/index.js -------------------------------------------------------------------------------- /24thMay2015/bower_components/angularjs/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/angularjs/.bower.json -------------------------------------------------------------------------------- /24thMay2015/bower_components/angularjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/angularjs/README.md -------------------------------------------------------------------------------- /24thMay2015/bower_components/angularjs/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/angularjs/angular-csp.css -------------------------------------------------------------------------------- /24thMay2015/bower_components/angularjs/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/angularjs/angular.js -------------------------------------------------------------------------------- /24thMay2015/bower_components/angularjs/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/angularjs/angular.min.js -------------------------------------------------------------------------------- /24thMay2015/bower_components/angularjs/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/angularjs/angular.min.js.gzip -------------------------------------------------------------------------------- /24thMay2015/bower_components/angularjs/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/angularjs/angular.min.js.map -------------------------------------------------------------------------------- /24thMay2015/bower_components/angularjs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/angularjs/bower.json -------------------------------------------------------------------------------- /24thMay2015/bower_components/angularjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/angularjs/index.js -------------------------------------------------------------------------------- /24thMay2015/bower_components/angularjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/angularjs/package.json -------------------------------------------------------------------------------- /24thMay2015/bower_components/firebase/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/firebase/.bower.json -------------------------------------------------------------------------------- /24thMay2015/bower_components/firebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/firebase/README.md -------------------------------------------------------------------------------- /24thMay2015/bower_components/firebase/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/firebase/bower.json -------------------------------------------------------------------------------- /24thMay2015/bower_components/firebase/firebase-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/firebase/firebase-debug.js -------------------------------------------------------------------------------- /24thMay2015/bower_components/firebase/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/24thMay2015/bower_components/firebase/firebase.js -------------------------------------------------------------------------------- /26thApril2015/.idea/.name: -------------------------------------------------------------------------------- 1 | 26thApril2015 -------------------------------------------------------------------------------- /26thApril2015/.idea/26thApril2015.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/26thApril2015/.idea/26thApril2015.iml -------------------------------------------------------------------------------- /26thApril2015/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/26thApril2015/.idea/misc.xml -------------------------------------------------------------------------------- /26thApril2015/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/26thApril2015/.idea/modules.xml -------------------------------------------------------------------------------- /26thApril2015/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/26thApril2015/.idea/vcs.xml -------------------------------------------------------------------------------- /26thApril2015/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/26thApril2015/.idea/workspace.xml -------------------------------------------------------------------------------- /26thApril2015/demoAngularFire/READ_ME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/26thApril2015/demoAngularFire/READ_ME.md -------------------------------------------------------------------------------- /26thApril2015/demoAngularFire/bower_components/angular-aria/index.js: -------------------------------------------------------------------------------- 1 | require('./angular-aria'); 2 | module.exports = 'ngAria'; 3 | -------------------------------------------------------------------------------- /26thApril2015/demoAngularFire/bower_components/angular-material/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.sw* 3 | .DS_STORE 4 | /.idea/ 5 | default-theme.css 6 | -------------------------------------------------------------------------------- /26thApril2015/demoAngularFire/bower_components/angular-material/demos/gridList/demoResponsiveUsage/style.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /26thApril2015/demoAngularFire/bower_components/angular-material/demos/input/demoIcons/style.scss: -------------------------------------------------------------------------------- 1 | .inputIconDemo { 2 | min-height:48px; 3 | } 4 | -------------------------------------------------------------------------------- /26thApril2015/demoAngularFire/bower_components/angular/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/26thApril2015/demoAngularFire/bower_components/angular/index.js -------------------------------------------------------------------------------- /26thApril2015/demoAngularFire/demoAngularFire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/26thApril2015/demoAngularFire/demoAngularFire.js -------------------------------------------------------------------------------- /26thApril2015/demoAngularFire/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/26thApril2015/demoAngularFire/firebase.json -------------------------------------------------------------------------------- /26thApril2015/demoAngularFire/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/26thApril2015/demoAngularFire/index.html -------------------------------------------------------------------------------- /29thMarch2015/.idea/.name: -------------------------------------------------------------------------------- 1 | 29thMarch2015 -------------------------------------------------------------------------------- /29thMarch2015/.idea/29thMarch2015.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/29thMarch2015/.idea/29thMarch2015.iml -------------------------------------------------------------------------------- /29thMarch2015/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/29thMarch2015/.idea/encodings.xml -------------------------------------------------------------------------------- /29thMarch2015/.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/29thMarch2015/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /29thMarch2015/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/29thMarch2015/.idea/misc.xml -------------------------------------------------------------------------------- /29thMarch2015/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/29thMarch2015/.idea/modules.xml -------------------------------------------------------------------------------- /29thMarch2015/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/29thMarch2015/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /29thMarch2015/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/29thMarch2015/.idea/vcs.xml -------------------------------------------------------------------------------- /29thMarch2015/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/29thMarch2015/.idea/workspace.xml -------------------------------------------------------------------------------- /29thMarch2015/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/29thMarch2015/bower.json -------------------------------------------------------------------------------- /29thMarch2015/bower_components/angularjs/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/29thMarch2015/bower_components/angularjs/.bower.json -------------------------------------------------------------------------------- /29thMarch2015/bower_components/angularjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/29thMarch2015/bower_components/angularjs/README.md -------------------------------------------------------------------------------- /29thMarch2015/bower_components/angularjs/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/29thMarch2015/bower_components/angularjs/angular-csp.css -------------------------------------------------------------------------------- /29thMarch2015/bower_components/angularjs/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/29thMarch2015/bower_components/angularjs/angular.js -------------------------------------------------------------------------------- /29thMarch2015/bower_components/angularjs/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/29thMarch2015/bower_components/angularjs/angular.min.js -------------------------------------------------------------------------------- /29thMarch2015/bower_components/angularjs/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/29thMarch2015/bower_components/angularjs/angular.min.js.gzip -------------------------------------------------------------------------------- /29thMarch2015/bower_components/angularjs/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/29thMarch2015/bower_components/angularjs/angular.min.js.map -------------------------------------------------------------------------------- /29thMarch2015/bower_components/angularjs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/29thMarch2015/bower_components/angularjs/bower.json -------------------------------------------------------------------------------- /29thMarch2015/bower_components/angularjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/29thMarch2015/bower_components/angularjs/index.js -------------------------------------------------------------------------------- /29thMarch2015/bower_components/angularjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/29thMarch2015/bower_components/angularjs/package.json -------------------------------------------------------------------------------- /29thMarch2015/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/29thMarch2015/index.html -------------------------------------------------------------------------------- /29thMarch2015/myControllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/29thMarch2015/myControllers.js -------------------------------------------------------------------------------- /31stMay2015/.idea/.name: -------------------------------------------------------------------------------- 1 | 31stMay2015 -------------------------------------------------------------------------------- /31stMay2015/.idea/31stMay2015.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/.idea/31stMay2015.iml -------------------------------------------------------------------------------- /31stMay2015/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/.idea/misc.xml -------------------------------------------------------------------------------- /31stMay2015/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/.idea/modules.xml -------------------------------------------------------------------------------- /31stMay2015/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/.idea/vcs.xml -------------------------------------------------------------------------------- /31stMay2015/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/.idea/workspace.xml -------------------------------------------------------------------------------- /31stMay2015/bower_components/angular/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/angular/.bower.json -------------------------------------------------------------------------------- /31stMay2015/bower_components/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/angular/README.md -------------------------------------------------------------------------------- /31stMay2015/bower_components/angular/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/angular/angular-csp.css -------------------------------------------------------------------------------- /31stMay2015/bower_components/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/angular/angular.js -------------------------------------------------------------------------------- /31stMay2015/bower_components/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/angular/angular.min.js -------------------------------------------------------------------------------- /31stMay2015/bower_components/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /31stMay2015/bower_components/angular/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/angular/angular.min.js.map -------------------------------------------------------------------------------- /31stMay2015/bower_components/angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/angular/bower.json -------------------------------------------------------------------------------- /31stMay2015/bower_components/angular/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/angular/index.js -------------------------------------------------------------------------------- /31stMay2015/bower_components/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/angular/package.json -------------------------------------------------------------------------------- /31stMay2015/bower_components/angularfire/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/angularfire/.bower.json -------------------------------------------------------------------------------- /31stMay2015/bower_components/angularfire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/angularfire/LICENSE -------------------------------------------------------------------------------- /31stMay2015/bower_components/angularfire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/angularfire/README.md -------------------------------------------------------------------------------- /31stMay2015/bower_components/angularfire/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/angularfire/bower.json -------------------------------------------------------------------------------- /31stMay2015/bower_components/angularfire/dist/angularfire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/angularfire/dist/angularfire.js -------------------------------------------------------------------------------- /31stMay2015/bower_components/angularfire/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/angularfire/index.js -------------------------------------------------------------------------------- /31stMay2015/bower_components/angularjs/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/angularjs/.bower.json -------------------------------------------------------------------------------- /31stMay2015/bower_components/angularjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/angularjs/README.md -------------------------------------------------------------------------------- /31stMay2015/bower_components/angularjs/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/angularjs/angular-csp.css -------------------------------------------------------------------------------- /31stMay2015/bower_components/angularjs/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/angularjs/angular.js -------------------------------------------------------------------------------- /31stMay2015/bower_components/angularjs/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/angularjs/angular.min.js -------------------------------------------------------------------------------- /31stMay2015/bower_components/angularjs/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/angularjs/angular.min.js.gzip -------------------------------------------------------------------------------- /31stMay2015/bower_components/angularjs/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/angularjs/angular.min.js.map -------------------------------------------------------------------------------- /31stMay2015/bower_components/angularjs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/angularjs/bower.json -------------------------------------------------------------------------------- /31stMay2015/bower_components/angularjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/angularjs/index.js -------------------------------------------------------------------------------- /31stMay2015/bower_components/angularjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/angularjs/package.json -------------------------------------------------------------------------------- /31stMay2015/bower_components/firebase/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/firebase/.bower.json -------------------------------------------------------------------------------- /31stMay2015/bower_components/firebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/firebase/README.md -------------------------------------------------------------------------------- /31stMay2015/bower_components/firebase/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/firebase/bower.json -------------------------------------------------------------------------------- /31stMay2015/bower_components/firebase/firebase-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/firebase/firebase-debug.js -------------------------------------------------------------------------------- /31stMay2015/bower_components/firebase/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/bower_components/firebase/firebase.js -------------------------------------------------------------------------------- /31stMay2015/demoSceurityRules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/demoSceurityRules/index.html -------------------------------------------------------------------------------- /31stMay2015/demoSceurityRules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/31stMay2015/demoSceurityRules/index.js -------------------------------------------------------------------------------- /3rdMay2015/.idea/.name: -------------------------------------------------------------------------------- 1 | 3rdMay2015 -------------------------------------------------------------------------------- /3rdMay2015/.idea/3rdMay2015.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/3rdMay2015/.idea/3rdMay2015.iml -------------------------------------------------------------------------------- /3rdMay2015/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/3rdMay2015/.idea/misc.xml -------------------------------------------------------------------------------- /3rdMay2015/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/3rdMay2015/.idea/modules.xml -------------------------------------------------------------------------------- /3rdMay2015/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/3rdMay2015/.idea/vcs.xml -------------------------------------------------------------------------------- /3rdMay2015/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/3rdMay2015/.idea/workspace.xml -------------------------------------------------------------------------------- /3rdMay2015/firebaseArray/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/3rdMay2015/firebaseArray/bower.json -------------------------------------------------------------------------------- /3rdMay2015/firebaseArray/bower_components/angular-aria/index.js: -------------------------------------------------------------------------------- 1 | require('./angular-aria'); 2 | module.exports = 'ngAria'; 3 | -------------------------------------------------------------------------------- /3rdMay2015/firebaseArray/bower_components/angular-material/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.sw* 3 | .DS_STORE 4 | /.idea/ 5 | default-theme.css 6 | -------------------------------------------------------------------------------- /3rdMay2015/firebaseArray/bower_components/angular-material/demos/gridList/demoResponsiveUsage/style.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdMay2015/firebaseArray/bower_components/angular-material/demos/input/demoIcons/style.scss: -------------------------------------------------------------------------------- 1 | .inputIconDemo { 2 | min-height:48px; 3 | } 4 | -------------------------------------------------------------------------------- /3rdMay2015/firebaseArray/bower_components/angular/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/3rdMay2015/firebaseArray/bower_components/angular/.bower.json -------------------------------------------------------------------------------- /3rdMay2015/firebaseArray/bower_components/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/3rdMay2015/firebaseArray/bower_components/angular/README.md -------------------------------------------------------------------------------- /3rdMay2015/firebaseArray/bower_components/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/3rdMay2015/firebaseArray/bower_components/angular/angular.js -------------------------------------------------------------------------------- /3rdMay2015/firebaseArray/bower_components/angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/3rdMay2015/firebaseArray/bower_components/angular/bower.json -------------------------------------------------------------------------------- /3rdMay2015/firebaseArray/bower_components/angular/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/3rdMay2015/firebaseArray/bower_components/angular/index.js -------------------------------------------------------------------------------- /3rdMay2015/firebaseArray/bower_components/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/3rdMay2015/firebaseArray/bower_components/angular/package.json -------------------------------------------------------------------------------- /3rdMay2015/firebaseArray/bower_components/angularfire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/3rdMay2015/firebaseArray/bower_components/angularfire/LICENSE -------------------------------------------------------------------------------- /3rdMay2015/firebaseArray/bower_components/angularfire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/3rdMay2015/firebaseArray/bower_components/angularfire/README.md -------------------------------------------------------------------------------- /3rdMay2015/firebaseArray/bower_components/angularfire/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/3rdMay2015/firebaseArray/bower_components/angularfire/index.js -------------------------------------------------------------------------------- /3rdMay2015/firebaseArray/bower_components/firebase/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/3rdMay2015/firebaseArray/bower_components/firebase/.bower.json -------------------------------------------------------------------------------- /3rdMay2015/firebaseArray/bower_components/firebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/3rdMay2015/firebaseArray/bower_components/firebase/README.md -------------------------------------------------------------------------------- /3rdMay2015/firebaseArray/bower_components/firebase/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/3rdMay2015/firebaseArray/bower_components/firebase/bower.json -------------------------------------------------------------------------------- /3rdMay2015/firebaseArray/bower_components/firebase/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/3rdMay2015/firebaseArray/bower_components/firebase/firebase.js -------------------------------------------------------------------------------- /3rdMay2015/firebaseArray/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/3rdMay2015/firebaseArray/index.html -------------------------------------------------------------------------------- /3rdMay2015/firebaseArray/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/3rdMay2015/firebaseArray/todo.js -------------------------------------------------------------------------------- /5thApril2015/.idea/.name: -------------------------------------------------------------------------------- 1 | 5thApril2015 -------------------------------------------------------------------------------- /5thApril2015/.idea/5thApril2015.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thApril2015/.idea/5thApril2015.iml -------------------------------------------------------------------------------- /5thApril2015/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thApril2015/.idea/encodings.xml -------------------------------------------------------------------------------- /5thApril2015/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thApril2015/.idea/misc.xml -------------------------------------------------------------------------------- /5thApril2015/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thApril2015/.idea/modules.xml -------------------------------------------------------------------------------- /5thApril2015/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thApril2015/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /5thApril2015/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thApril2015/.idea/vcs.xml -------------------------------------------------------------------------------- /5thApril2015/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thApril2015/.idea/workspace.xml -------------------------------------------------------------------------------- /5thApril2015/RevisionClass/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thApril2015/RevisionClass/index.html -------------------------------------------------------------------------------- /5thApril2015/RevisionClass/myControllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thApril2015/RevisionClass/myControllers.js -------------------------------------------------------------------------------- /5thApril2015/bower_components/angularjs/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thApril2015/bower_components/angularjs/.bower.json -------------------------------------------------------------------------------- /5thApril2015/bower_components/angularjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thApril2015/bower_components/angularjs/README.md -------------------------------------------------------------------------------- /5thApril2015/bower_components/angularjs/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thApril2015/bower_components/angularjs/angular-csp.css -------------------------------------------------------------------------------- /5thApril2015/bower_components/angularjs/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thApril2015/bower_components/angularjs/angular.js -------------------------------------------------------------------------------- /5thApril2015/bower_components/angularjs/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thApril2015/bower_components/angularjs/angular.min.js -------------------------------------------------------------------------------- /5thApril2015/bower_components/angularjs/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thApril2015/bower_components/angularjs/angular.min.js.gzip -------------------------------------------------------------------------------- /5thApril2015/bower_components/angularjs/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thApril2015/bower_components/angularjs/angular.min.js.map -------------------------------------------------------------------------------- /5thApril2015/bower_components/angularjs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thApril2015/bower_components/angularjs/bower.json -------------------------------------------------------------------------------- /5thApril2015/bower_components/angularjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thApril2015/bower_components/angularjs/index.js -------------------------------------------------------------------------------- /5thApril2015/bower_components/angularjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thApril2015/bower_components/angularjs/package.json -------------------------------------------------------------------------------- /5thJuly2015/.idea/.name: -------------------------------------------------------------------------------- 1 | 5thJuly2015 -------------------------------------------------------------------------------- /5thJuly2015/.idea/5thJuly2015.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/.idea/5thJuly2015.iml -------------------------------------------------------------------------------- /5thJuly2015/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/.idea/misc.xml -------------------------------------------------------------------------------- /5thJuly2015/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/.idea/modules.xml -------------------------------------------------------------------------------- /5thJuly2015/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/.idea/vcs.xml -------------------------------------------------------------------------------- /5thJuly2015/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/.idea/workspace.xml -------------------------------------------------------------------------------- /5thJuly2015/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/bower.json -------------------------------------------------------------------------------- /5thJuly2015/bower_components/angular/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/bower_components/angular/.bower.json -------------------------------------------------------------------------------- /5thJuly2015/bower_components/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/bower_components/angular/README.md -------------------------------------------------------------------------------- /5thJuly2015/bower_components/angular/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/bower_components/angular/angular-csp.css -------------------------------------------------------------------------------- /5thJuly2015/bower_components/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/bower_components/angular/angular.js -------------------------------------------------------------------------------- /5thJuly2015/bower_components/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/bower_components/angular/angular.min.js -------------------------------------------------------------------------------- /5thJuly2015/bower_components/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/bower_components/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /5thJuly2015/bower_components/angular/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/bower_components/angular/angular.min.js.map -------------------------------------------------------------------------------- /5thJuly2015/bower_components/angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/bower_components/angular/bower.json -------------------------------------------------------------------------------- /5thJuly2015/bower_components/angular/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/bower_components/angular/index.js -------------------------------------------------------------------------------- /5thJuly2015/bower_components/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/bower_components/angular/package.json -------------------------------------------------------------------------------- /5thJuly2015/bower_components/angularfire/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/bower_components/angularfire/.bower.json -------------------------------------------------------------------------------- /5thJuly2015/bower_components/angularfire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/bower_components/angularfire/LICENSE -------------------------------------------------------------------------------- /5thJuly2015/bower_components/angularfire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/bower_components/angularfire/README.md -------------------------------------------------------------------------------- /5thJuly2015/bower_components/angularfire/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/bower_components/angularfire/bower.json -------------------------------------------------------------------------------- /5thJuly2015/bower_components/angularfire/dist/angularfire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/bower_components/angularfire/dist/angularfire.js -------------------------------------------------------------------------------- /5thJuly2015/bower_components/angularfire/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/bower_components/angularfire/index.js -------------------------------------------------------------------------------- /5thJuly2015/bower_components/firebase/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/bower_components/firebase/.bower.json -------------------------------------------------------------------------------- /5thJuly2015/bower_components/firebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/bower_components/firebase/README.md -------------------------------------------------------------------------------- /5thJuly2015/bower_components/firebase/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/bower_components/firebase/bower.json -------------------------------------------------------------------------------- /5thJuly2015/bower_components/firebase/firebase-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/bower_components/firebase/firebase-debug.js -------------------------------------------------------------------------------- /5thJuly2015/bower_components/firebase/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/bower_components/firebase/firebase.js -------------------------------------------------------------------------------- /5thJuly2015/firebaseJSSDK/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/firebaseJSSDK/index.html -------------------------------------------------------------------------------- /5thJuly2015/firebaseJSSDK/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/firebaseJSSDK/index.js -------------------------------------------------------------------------------- /5thJuly2015/firebaseSecurityRules - Practice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/firebaseSecurityRules - Practice.txt -------------------------------------------------------------------------------- /5thJuly2015/sampleAuth/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/sampleAuth/index.html -------------------------------------------------------------------------------- /5thJuly2015/sampleAuth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/5thJuly2015/sampleAuth/index.js -------------------------------------------------------------------------------- /7thJune2015/.idea/.name: -------------------------------------------------------------------------------- 1 | 7thJune2015 -------------------------------------------------------------------------------- /7thJune2015/.idea/7thJune2015.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/.idea/7thJune2015.iml -------------------------------------------------------------------------------- /7thJune2015/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/.idea/misc.xml -------------------------------------------------------------------------------- /7thJune2015/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/.idea/modules.xml -------------------------------------------------------------------------------- /7thJune2015/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/.idea/vcs.xml -------------------------------------------------------------------------------- /7thJune2015/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/.idea/workspace.xml -------------------------------------------------------------------------------- /7thJune2015/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower.json -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-animate/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-animate/.bower.json -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-animate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-animate/README.md -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-animate/angular-animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-animate/angular-animate.js -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-animate/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-animate/bower.json -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-animate/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-animate/index.js -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-animate/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-animate/package.json -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-aria/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-aria/.bower.json -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-aria/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-aria/README.md -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-aria/angular-aria.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-aria/angular-aria.js -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-aria/angular-aria.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-aria/angular-aria.min.js -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-aria/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-aria/bower.json -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-aria/index.js: -------------------------------------------------------------------------------- 1 | require('./angular-aria'); 2 | module.exports = 'ngAria'; 3 | -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-aria/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-aria/package.json -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-material/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-material/.bower.json -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-material/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.sw* 3 | .DS_STORE 4 | /.idea/ 5 | default-theme.css 6 | -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-material/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-material/CHANGELOG.md -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-material/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-material/LICENSE -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-material/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-material/README.md -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-material/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-material/bower.json -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-material/demos/gridList/demoResponsiveUsage/style.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-material/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-material/index.js -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-material/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-material/package.json -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-new-router/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-new-router/.bower.json -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-new-router/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "bower_components" 3 | } -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-new-router/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-new-router/.editorconfig -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-new-router/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-new-router/.gitignore -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-new-router/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-new-router/.npmignore -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-new-router/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-new-router/.travis.yml -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-new-router/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-new-router/ARCHITECTURE.md -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-new-router/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-new-router/CHANGELOG.md -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-new-router/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-new-router/CONTRIBUTING.md -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-new-router/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-new-router/LICENSE -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-new-router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-new-router/README.md -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-new-router/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-new-router/config.json -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-new-router/docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-new-router/docs/style.css -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-new-router/examples/angular-1/phone-kitten/css/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-new-router/examples/angular-1/phone-kitten/img/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-new-router/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-new-router/gulpfile.js -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-new-router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-new-router/index.js -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-new-router/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-new-router/karma.conf.js -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-new-router/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-new-router/package.json -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-new-router/src/grammar.ats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-new-router/src/grammar.ats -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-new-router/src/router.ats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-new-router/src/router.ats -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular-new-router/test/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular-new-router/test/main.js -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular/.bower.json -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular/README.md -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular/angular-csp.css -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular/angular.js -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular/angular.min.js -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular/angular.min.js.map -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular/bower.json -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular/index.js -------------------------------------------------------------------------------- /7thJune2015/bower_components/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angular/package.json -------------------------------------------------------------------------------- /7thJune2015/bower_components/angularfire/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angularfire/.bower.json -------------------------------------------------------------------------------- /7thJune2015/bower_components/angularfire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angularfire/LICENSE -------------------------------------------------------------------------------- /7thJune2015/bower_components/angularfire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angularfire/README.md -------------------------------------------------------------------------------- /7thJune2015/bower_components/angularfire/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angularfire/bower.json -------------------------------------------------------------------------------- /7thJune2015/bower_components/angularfire/dist/angularfire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angularfire/dist/angularfire.js -------------------------------------------------------------------------------- /7thJune2015/bower_components/angularfire/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/angularfire/index.js -------------------------------------------------------------------------------- /7thJune2015/bower_components/firebase/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/firebase/.bower.json -------------------------------------------------------------------------------- /7thJune2015/bower_components/firebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/firebase/README.md -------------------------------------------------------------------------------- /7thJune2015/bower_components/firebase/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/firebase/bower.json -------------------------------------------------------------------------------- /7thJune2015/bower_components/firebase/firebase-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/firebase/firebase-debug.js -------------------------------------------------------------------------------- /7thJune2015/bower_components/firebase/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/bower_components/firebase/firebase.js -------------------------------------------------------------------------------- /7thJune2015/revisionClass/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/revisionClass/app.js -------------------------------------------------------------------------------- /7thJune2015/revisionClass/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/revisionClass/index.html -------------------------------------------------------------------------------- /7thJune2015/revisionDemoNewRoter/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/revisionDemoNewRoter/app.js -------------------------------------------------------------------------------- /7thJune2015/revisionDemoNewRoter/components/home/home.html: -------------------------------------------------------------------------------- 1 | In Home -------------------------------------------------------------------------------- /7thJune2015/revisionDemoNewRoter/components/profile/profile.html: -------------------------------------------------------------------------------- 1 | User's Profile -------------------------------------------------------------------------------- /7thJune2015/revisionDemoNewRoter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/revisionDemoNewRoter/index.html -------------------------------------------------------------------------------- /7thJune2015/revisionRouter/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/revisionRouter/app.js -------------------------------------------------------------------------------- /7thJune2015/revisionRouter/components/home/home.ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/revisionRouter/components/home/home.ctrl.js -------------------------------------------------------------------------------- /7thJune2015/revisionRouter/components/home/home.html: -------------------------------------------------------------------------------- 1 | Welcome to home 2 | -------------------------------------------------------------------------------- /7thJune2015/revisionRouter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/7thJune2015/revisionRouter/index.html -------------------------------------------------------------------------------- /NodeJs/Class01 - 15Nov/BasicServer/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class01 - 15Nov/BasicServer/app.js -------------------------------------------------------------------------------- /NodeJs/Class01 - 15Nov/BasicServer/myJs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class01 - 15Nov/BasicServer/myJs.js -------------------------------------------------------------------------------- /NodeJs/Class01 - 15Nov/ExpressHelloWorld/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class01 - 15Nov/ExpressHelloWorld/app.js -------------------------------------------------------------------------------- /NodeJs/Class01 - 15Nov/ExpressHelloWorld/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class01 - 15Nov/ExpressHelloWorld/package.json -------------------------------------------------------------------------------- /NodeJs/Class01 - 15Nov/TS - SampleApp/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class01 - 15Nov/TS - SampleApp/.vscode/tasks.json -------------------------------------------------------------------------------- /NodeJs/Class01 - 15Nov/TS - SampleApp/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class01 - 15Nov/TS - SampleApp/app.js -------------------------------------------------------------------------------- /NodeJs/Class01 - 15Nov/TS - SampleApp/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class01 - 15Nov/TS - SampleApp/app.ts -------------------------------------------------------------------------------- /NodeJs/Class01 - 15Nov/TS - SampleApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class01 - 15Nov/TS - SampleApp/package.json -------------------------------------------------------------------------------- /NodeJs/Class01 - 15Nov/TS - SampleApp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class01 - 15Nov/TS - SampleApp/tsconfig.json -------------------------------------------------------------------------------- /NodeJs/Class01 - 15Nov/TS - SampleApp/tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class01 - 15Nov/TS - SampleApp/tsd.json -------------------------------------------------------------------------------- /NodeJs/Class01 - 15Nov/TS - SampleApp/typings/tsd.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class01 - 15Nov/TS - SampleApp/typings/tsd.d.ts -------------------------------------------------------------------------------- /NodeJs/Class02 - 22Nov/BasicHTTPServer/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class02 - 22Nov/BasicHTTPServer/App.js -------------------------------------------------------------------------------- /NodeJs/Class02 - 22Nov/RandomIntegerWithExpress/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class02 - 22Nov/RandomIntegerWithExpress/app.js -------------------------------------------------------------------------------- /NodeJs/Class02 - 22Nov/RandomIntegerWithExpress/myModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class02 - 22Nov/RandomIntegerWithExpress/myModule.js -------------------------------------------------------------------------------- /NodeJs/Class02 - 22Nov/RandomIntegerWithExpress/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class02 - 22Nov/RandomIntegerWithExpress/package.json -------------------------------------------------------------------------------- /NodeJs/Class03 - 28Nov/DemoPromisePattern/AsyncCodeSample01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class03 - 28Nov/DemoPromisePattern/AsyncCodeSample01.js -------------------------------------------------------------------------------- /NodeJs/Class03 - 28Nov/DemoPromisePattern/AsyncCodeSample02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class03 - 28Nov/DemoPromisePattern/AsyncCodeSample02.js -------------------------------------------------------------------------------- /NodeJs/Class03 - 28Nov/DemoPromisePattern/SyncCodeSample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class03 - 28Nov/DemoPromisePattern/SyncCodeSample.js -------------------------------------------------------------------------------- /NodeJs/Class03 - 28Nov/DemoPromisePattern/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class03 - 28Nov/DemoPromisePattern/package.json -------------------------------------------------------------------------------- /NodeJs/Class03 - 28Nov/DemoPromisePattern/promises/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class03 - 28Nov/DemoPromisePattern/promises/app.js -------------------------------------------------------------------------------- /NodeJs/Class03 - 28Nov/DemoPromisePattern/promises/myModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class03 - 28Nov/DemoPromisePattern/promises/myModule.js -------------------------------------------------------------------------------- /NodeJs/Class03 - 28Nov/RoutersAndMounting/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class03 - 28Nov/RoutersAndMounting/.vscode/tasks.json -------------------------------------------------------------------------------- /NodeJs/Class03 - 28Nov/RoutersAndMounting/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class03 - 28Nov/RoutersAndMounting/package.json -------------------------------------------------------------------------------- /NodeJs/Class03 - 28Nov/RoutersAndMounting/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class03 - 28Nov/RoutersAndMounting/server.js -------------------------------------------------------------------------------- /NodeJs/Class03 - 28Nov/RoutersAndMounting/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class03 - 28Nov/RoutersAndMounting/server.ts -------------------------------------------------------------------------------- /NodeJs/Class03 - 28Nov/RoutersAndMounting/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class03 - 28Nov/RoutersAndMounting/tsconfig.json -------------------------------------------------------------------------------- /NodeJs/Class03 - 28Nov/RoutersAndMounting/tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class03 - 28Nov/RoutersAndMounting/tsd.json -------------------------------------------------------------------------------- /NodeJs/Class03 - 28Nov/RoutersAndMounting/typings/tsd.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class03 - 28Nov/RoutersAndMounting/typings/tsd.d.ts -------------------------------------------------------------------------------- /NodeJs/Class04 - 29Nov/ExpressApp/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class04 - 29Nov/ExpressApp/.vscode/tasks.json -------------------------------------------------------------------------------- /NodeJs/Class04 - 29Nov/ExpressApp/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class04 - 29Nov/ExpressApp/app.js -------------------------------------------------------------------------------- /NodeJs/Class04 - 29Nov/ExpressApp/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class04 - 29Nov/ExpressApp/app.ts -------------------------------------------------------------------------------- /NodeJs/Class04 - 29Nov/ExpressApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class04 - 29Nov/ExpressApp/package.json -------------------------------------------------------------------------------- /NodeJs/Class04 - 29Nov/ExpressApp/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class04 - 29Nov/ExpressApp/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /NodeJs/Class04 - 29Nov/ExpressApp/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class04 - 29Nov/ExpressApp/static/images/logo.png -------------------------------------------------------------------------------- /NodeJs/Class04 - 29Nov/ExpressApp/templates/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class04 - 29Nov/ExpressApp/templates/index.ejs -------------------------------------------------------------------------------- /NodeJs/Class04 - 29Nov/ExpressApp/templates/students/add.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class04 - 29Nov/ExpressApp/templates/students/add.ejs -------------------------------------------------------------------------------- /NodeJs/Class04 - 29Nov/ExpressApp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class04 - 29Nov/ExpressApp/tsconfig.json -------------------------------------------------------------------------------- /NodeJs/Class04 - 29Nov/ExpressApp/tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class04 - 29Nov/ExpressApp/tsd.json -------------------------------------------------------------------------------- /NodeJs/Class04 - 29Nov/ExpressApp/typings/ejs/ejs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class04 - 29Nov/ExpressApp/typings/ejs/ejs.d.ts -------------------------------------------------------------------------------- /NodeJs/Class04 - 29Nov/ExpressApp/typings/express/express.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class04 - 29Nov/ExpressApp/typings/express/express.d.ts -------------------------------------------------------------------------------- /NodeJs/Class04 - 29Nov/ExpressApp/typings/node/node.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class04 - 29Nov/ExpressApp/typings/node/node.d.ts -------------------------------------------------------------------------------- /NodeJs/Class04 - 29Nov/ExpressApp/typings/tsd.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class04 - 29Nov/ExpressApp/typings/tsd.d.ts -------------------------------------------------------------------------------- /NodeJs/Class04 - 29Nov/ExpressErrorHandling/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class04 - 29Nov/ExpressErrorHandling/.vscode/tasks.json -------------------------------------------------------------------------------- /NodeJs/Class04 - 29Nov/ExpressErrorHandling/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class04 - 29Nov/ExpressErrorHandling/app.js -------------------------------------------------------------------------------- /NodeJs/Class04 - 29Nov/ExpressErrorHandling/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class04 - 29Nov/ExpressErrorHandling/app.ts -------------------------------------------------------------------------------- /NodeJs/Class04 - 29Nov/ExpressErrorHandling/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class04 - 29Nov/ExpressErrorHandling/package.json -------------------------------------------------------------------------------- /NodeJs/Class04 - 29Nov/ExpressErrorHandling/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class04 - 29Nov/ExpressErrorHandling/tsconfig.json -------------------------------------------------------------------------------- /NodeJs/Class04 - 29Nov/ExpressErrorHandling/tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class04 - 29Nov/ExpressErrorHandling/tsd.json -------------------------------------------------------------------------------- /NodeJs/Class04 - 29Nov/ExpressErrorHandling/typings/tsd.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/Class04 - 29Nov/ExpressErrorHandling/typings/tsd.d.ts -------------------------------------------------------------------------------- /NodeJs/class05 - 13Dec/mongoDB101/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/class05 - 13Dec/mongoDB101/.vscode/launch.json -------------------------------------------------------------------------------- /NodeJs/class05 - 13Dec/mongoDB101/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/class05 - 13Dec/mongoDB101/.vscode/tasks.json -------------------------------------------------------------------------------- /NodeJs/class05 - 13Dec/mongoDB101/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/class05 - 13Dec/mongoDB101/app.js -------------------------------------------------------------------------------- /NodeJs/class05 - 13Dec/mongoDB101/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/class05 - 13Dec/mongoDB101/app.ts -------------------------------------------------------------------------------- /NodeJs/class05 - 13Dec/mongoDB101/dataModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/class05 - 13Dec/mongoDB101/dataModel.js -------------------------------------------------------------------------------- /NodeJs/class05 - 13Dec/mongoDB101/dataModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/class05 - 13Dec/mongoDB101/dataModel.ts -------------------------------------------------------------------------------- /NodeJs/class05 - 13Dec/mongoDB101/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/class05 - 13Dec/mongoDB101/package.json -------------------------------------------------------------------------------- /NodeJs/class05 - 13Dec/mongoDB101/static/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/class05 - 13Dec/mongoDB101/static/app/index.html -------------------------------------------------------------------------------- /NodeJs/class05 - 13Dec/mongoDB101/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/class05 - 13Dec/mongoDB101/tsconfig.json -------------------------------------------------------------------------------- /NodeJs/class05 - 13Dec/mongoDB101/tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/class05 - 13Dec/mongoDB101/tsd.json -------------------------------------------------------------------------------- /NodeJs/class05 - 13Dec/mongoDB101/typings/express/express.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/class05 - 13Dec/mongoDB101/typings/express/express.d.ts -------------------------------------------------------------------------------- /NodeJs/class05 - 13Dec/mongoDB101/typings/node/node.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/class05 - 13Dec/mongoDB101/typings/node/node.d.ts -------------------------------------------------------------------------------- /NodeJs/class05 - 13Dec/mongoDB101/typings/tsd.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/NodeJs/class05 - 13Dec/mongoDB101/typings/tsd.d.ts -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "www/lib" 3 | } 4 | -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/.gitignore -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/.idea/.name: -------------------------------------------------------------------------------- 1 | ionic101 -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/.idea/ionic101.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/.idea/ionic101.iml -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/.idea/misc.xml -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/.idea/modules.xml -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/.idea/vcs.xml -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/.idea/workspace.xml -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/bower.json -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/config.xml -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/gulpfile.js -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/hooks/README.md -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/ionic.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/ionic.project -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/package.json -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/resources/icon.png -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/resources/ios/icon/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/resources/ios/icon/icon-40.png -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/resources/ios/icon/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/resources/ios/icon/icon-50.png -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/resources/ios/icon/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/resources/ios/icon/icon-60.png -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/resources/ios/icon/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/resources/ios/icon/icon-72.png -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/resources/ios/icon/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/resources/ios/icon/icon-76.png -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/resources/ios/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/resources/ios/icon/icon.png -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/resources/ios/icon/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/resources/ios/icon/icon@2x.png -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/resources/splash.png -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/scss/ionic.app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/scss/ionic.app.scss -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/css/style.css -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/img/ionic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/img/ionic.png -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/index.html -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/js/app.js -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/css/ionic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/css/ionic.css -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/css/ionic.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/css/ionic.min.css -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/fonts/ionicons.eot -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/fonts/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/fonts/ionicons.svg -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/fonts/ionicons.ttf -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/js/ionic.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/js/ionic.bundle.js -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/js/ionic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/js/ionic.js -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/js/ionic.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/js/ionic.min.js -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_badge.scss -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_bar.scss -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_button.scss -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_form.scss -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_grid.scss -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_items.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_items.scss -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_list.scss -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_loading.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_loading.scss -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_menu.scss -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_mixins.scss -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_modal.scss -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_popover.scss -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_popup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_popup.scss -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_radio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_radio.scss -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_range.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_range.scss -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_reset.scss -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_select.scss -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_spinner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_spinner.scss -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_tabs.scss -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_toggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_toggle.scss -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_type.scss -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_util.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/_util.scss -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/ionic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/scss/ionic.scss -------------------------------------------------------------------------------- /ionic/class1 - 8thAug/ionic101/www/lib/ionic/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class1 - 8thAug/ionic101/www/lib/ionic/version.json -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "www/lib" 3 | } 4 | -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/.gitignore -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/.idea/.name: -------------------------------------------------------------------------------- 1 | myApp -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/.idea/misc.xml -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/.idea/modules.xml -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/.idea/myApp.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/.idea/myApp.iml -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/.idea/vcs.xml -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/.idea/workspace.xml -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/bower.json -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/config.xml -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/gulpfile.js -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/hooks/README.md -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/ionic.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/ionic.project -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/package.json -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/resources/icon.png -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/resources/ios/icon/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/resources/ios/icon/icon-40.png -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/resources/ios/icon/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/resources/ios/icon/icon-40@2x.png -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/resources/ios/icon/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/resources/ios/icon/icon-50.png -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/resources/ios/icon/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/resources/ios/icon/icon-50@2x.png -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/resources/ios/icon/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/resources/ios/icon/icon-60.png -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/resources/ios/icon/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/resources/ios/icon/icon-60@2x.png -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/resources/ios/icon/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/resources/ios/icon/icon-60@3x.png -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/resources/ios/icon/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/resources/ios/icon/icon-72.png -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/resources/ios/icon/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/resources/ios/icon/icon-72@2x.png -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/resources/ios/icon/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/resources/ios/icon/icon-76.png -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/resources/ios/icon/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/resources/ios/icon/icon-76@2x.png -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/resources/ios/icon/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/resources/ios/icon/icon-small.png -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/resources/ios/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/resources/ios/icon/icon.png -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/resources/ios/icon/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/resources/ios/icon/icon@2x.png -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/resources/splash.png -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/scss/ionic.app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/scss/ionic.app.scss -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/css/style.css -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/img/ionic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/img/ionic.png -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/index.html -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/js/app.js -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/js/controllers.js -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/css/ionic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/css/ionic.css -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/css/ionic.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/css/ionic.min.css -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/fonts/ionicons.eot -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/fonts/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/fonts/ionicons.svg -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/fonts/ionicons.ttf -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/js/ionic.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/js/ionic.bundle.js -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/js/ionic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/js/ionic.js -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/js/ionic.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/js/ionic.min.js -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_badge.scss -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_bar.scss -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_button.scss -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_form.scss -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_grid.scss -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_items.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_items.scss -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_list.scss -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_loading.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_loading.scss -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_menu.scss -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_mixins.scss -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_modal.scss -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_popover.scss -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_popup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_popup.scss -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_radio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_radio.scss -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_range.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_range.scss -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_reset.scss -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_select.scss -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_spinner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_spinner.scss -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_tabs.scss -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_toggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_toggle.scss -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_type.scss -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_util.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/_util.scss -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/ionic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/scss/ionic.scss -------------------------------------------------------------------------------- /ionic/class2 - 9thAug/myApp/www/lib/ionic/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class2 - 9thAug/myApp/www/lib/ionic/version.json -------------------------------------------------------------------------------- /ionic/class3 - 16thAug/resortApp/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "www/lib" 3 | } 4 | -------------------------------------------------------------------------------- /ionic/class3 - 16thAug/resortApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class3 - 16thAug/resortApp/.gitignore -------------------------------------------------------------------------------- /ionic/class3 - 16thAug/resortApp/.idea/.name: -------------------------------------------------------------------------------- 1 | resortApp -------------------------------------------------------------------------------- /ionic/class3 - 16thAug/resortApp/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class3 - 16thAug/resortApp/.idea/misc.xml -------------------------------------------------------------------------------- /ionic/class3 - 16thAug/resortApp/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class3 - 16thAug/resortApp/.idea/modules.xml -------------------------------------------------------------------------------- /ionic/class3 - 16thAug/resortApp/.idea/resortApp.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class3 - 16thAug/resortApp/.idea/resortApp.iml -------------------------------------------------------------------------------- /ionic/class3 - 16thAug/resortApp/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class3 - 16thAug/resortApp/.idea/vcs.xml -------------------------------------------------------------------------------- /ionic/class3 - 16thAug/resortApp/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class3 - 16thAug/resortApp/.idea/workspace.xml -------------------------------------------------------------------------------- /ionic/class3 - 16thAug/resortApp/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class3 - 16thAug/resortApp/bower.json -------------------------------------------------------------------------------- /ionic/class3 - 16thAug/resortApp/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class3 - 16thAug/resortApp/config.xml -------------------------------------------------------------------------------- /ionic/class3 - 16thAug/resortApp/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class3 - 16thAug/resortApp/gulpfile.js -------------------------------------------------------------------------------- /ionic/class3 - 16thAug/resortApp/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class3 - 16thAug/resortApp/hooks/README.md -------------------------------------------------------------------------------- /ionic/class3 - 16thAug/resortApp/ionic.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class3 - 16thAug/resortApp/ionic.project -------------------------------------------------------------------------------- /ionic/class3 - 16thAug/resortApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class3 - 16thAug/resortApp/package.json -------------------------------------------------------------------------------- /ionic/class3 - 16thAug/resortApp/scss/ionic.app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class3 - 16thAug/resortApp/scss/ionic.app.scss -------------------------------------------------------------------------------- /ionic/class3 - 16thAug/resortApp/www/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class3 - 16thAug/resortApp/www/css/style.css -------------------------------------------------------------------------------- /ionic/class3 - 16thAug/resortApp/www/img/ionic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class3 - 16thAug/resortApp/www/img/ionic.png -------------------------------------------------------------------------------- /ionic/class3 - 16thAug/resortApp/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class3 - 16thAug/resortApp/www/index.html -------------------------------------------------------------------------------- /ionic/class3 - 16thAug/resortApp/www/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class3 - 16thAug/resortApp/www/js/app.js -------------------------------------------------------------------------------- /ionic/class3 - 16thAug/resortApp/www/lib/ionic/css/ionic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class3 - 16thAug/resortApp/www/lib/ionic/css/ionic.css -------------------------------------------------------------------------------- /ionic/class3 - 16thAug/resortApp/www/lib/ionic/js/ionic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class3 - 16thAug/resortApp/www/lib/ionic/js/ionic.js -------------------------------------------------------------------------------- /ionic/class3 - 16thAug/resortApp/www/lib/ionic/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class3 - 16thAug/resortApp/www/lib/ionic/version.json -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "www/lib" 3 | } 4 | -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class4 - 23rdAug/bitcoinApp/.editorconfig -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class4 - 23rdAug/bitcoinApp/.gitignore -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/.idea/.name: -------------------------------------------------------------------------------- 1 | bitcoinApp -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/.idea/bitcoinApp.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class4 - 23rdAug/bitcoinApp/.idea/bitcoinApp.iml -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class4 - 23rdAug/bitcoinApp/.idea/encodings.xml -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class4 - 23rdAug/bitcoinApp/.idea/misc.xml -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class4 - 23rdAug/bitcoinApp/.idea/modules.xml -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class4 - 23rdAug/bitcoinApp/.idea/vcs.xml -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class4 - 23rdAug/bitcoinApp/.idea/workspace.xml -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class4 - 23rdAug/bitcoinApp/bower.json -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class4 - 23rdAug/bitcoinApp/config.xml -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class4 - 23rdAug/bitcoinApp/gulpfile.js -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class4 - 23rdAug/bitcoinApp/hooks/README.md -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/ionic.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class4 - 23rdAug/bitcoinApp/ionic.project -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class4 - 23rdAug/bitcoinApp/package.json -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/scss/ionic.app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class4 - 23rdAug/bitcoinApp/scss/ionic.app.scss -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/www/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class4 - 23rdAug/bitcoinApp/www/css/style.css -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/www/img/ionic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class4 - 23rdAug/bitcoinApp/www/img/ionic.png -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class4 - 23rdAug/bitcoinApp/www/index.html -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/www/js/allControllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class4 - 23rdAug/bitcoinApp/www/js/allControllers.js -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/www/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class4 - 23rdAug/bitcoinApp/www/js/app.js -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/www/lib/ionic/js/ionic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class4 - 23rdAug/bitcoinApp/www/lib/ionic/js/ionic.js -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/www/lib/ionic/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class4 - 23rdAug/bitcoinApp/www/lib/ionic/version.json -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/www/views/currencies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class4 - 23rdAug/bitcoinApp/www/views/currencies.html -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/www/views/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class4 - 23rdAug/bitcoinApp/www/views/popup.html -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/www/views/rates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class4 - 23rdAug/bitcoinApp/www/views/rates.html -------------------------------------------------------------------------------- /ionic/class4 - 23rdAug/bitcoinApp/www/views/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class4 - 23rdAug/bitcoinApp/www/views/tabs.html -------------------------------------------------------------------------------- /ionic/class5 - 30thAug/trainerApp/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "www/lib" 3 | } 4 | -------------------------------------------------------------------------------- /ionic/class5 - 30thAug/trainerApp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class5 - 30thAug/trainerApp/.editorconfig -------------------------------------------------------------------------------- /ionic/class5 - 30thAug/trainerApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class5 - 30thAug/trainerApp/.gitignore -------------------------------------------------------------------------------- /ionic/class5 - 30thAug/trainerApp/.idea/.name: -------------------------------------------------------------------------------- 1 | trainerApp -------------------------------------------------------------------------------- /ionic/class5 - 30thAug/trainerApp/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class5 - 30thAug/trainerApp/.idea/encodings.xml -------------------------------------------------------------------------------- /ionic/class5 - 30thAug/trainerApp/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class5 - 30thAug/trainerApp/.idea/misc.xml -------------------------------------------------------------------------------- /ionic/class5 - 30thAug/trainerApp/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class5 - 30thAug/trainerApp/.idea/modules.xml -------------------------------------------------------------------------------- /ionic/class5 - 30thAug/trainerApp/.idea/trainerApp.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class5 - 30thAug/trainerApp/.idea/trainerApp.iml -------------------------------------------------------------------------------- /ionic/class5 - 30thAug/trainerApp/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class5 - 30thAug/trainerApp/.idea/vcs.xml -------------------------------------------------------------------------------- /ionic/class5 - 30thAug/trainerApp/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class5 - 30thAug/trainerApp/.idea/workspace.xml -------------------------------------------------------------------------------- /ionic/class5 - 30thAug/trainerApp/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class5 - 30thAug/trainerApp/bower.json -------------------------------------------------------------------------------- /ionic/class5 - 30thAug/trainerApp/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class5 - 30thAug/trainerApp/config.xml -------------------------------------------------------------------------------- /ionic/class5 - 30thAug/trainerApp/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class5 - 30thAug/trainerApp/gulpfile.js -------------------------------------------------------------------------------- /ionic/class5 - 30thAug/trainerApp/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class5 - 30thAug/trainerApp/hooks/README.md -------------------------------------------------------------------------------- /ionic/class5 - 30thAug/trainerApp/ionic.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class5 - 30thAug/trainerApp/ionic.project -------------------------------------------------------------------------------- /ionic/class5 - 30thAug/trainerApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class5 - 30thAug/trainerApp/package.json -------------------------------------------------------------------------------- /ionic/class5 - 30thAug/trainerApp/scss/ionic.app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class5 - 30thAug/trainerApp/scss/ionic.app.scss -------------------------------------------------------------------------------- /ionic/class5 - 30thAug/trainerApp/www/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class5 - 30thAug/trainerApp/www/css/style.css -------------------------------------------------------------------------------- /ionic/class5 - 30thAug/trainerApp/www/img/ionic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class5 - 30thAug/trainerApp/www/img/ionic.png -------------------------------------------------------------------------------- /ionic/class5 - 30thAug/trainerApp/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class5 - 30thAug/trainerApp/www/index.html -------------------------------------------------------------------------------- /ionic/class5 - 30thAug/trainerApp/www/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class5 - 30thAug/trainerApp/www/js/app.js -------------------------------------------------------------------------------- /ionic/class5 - 30thAug/trainerApp/www/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class5 - 30thAug/trainerApp/www/js/controllers.js -------------------------------------------------------------------------------- /ionic/class5 - 30thAug/trainerApp/www/lib/ionic/js/ionic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class5 - 30thAug/trainerApp/www/lib/ionic/js/ionic.js -------------------------------------------------------------------------------- /ionic/class5 - 30thAug/trainerApp/www/lib/ionic/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class5 - 30thAug/trainerApp/www/lib/ionic/version.json -------------------------------------------------------------------------------- /ionic/class5 - 30thAug/trainerApp/www/views/MainModal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class5 - 30thAug/trainerApp/www/views/MainModal.html -------------------------------------------------------------------------------- /ionic/class5 - 30thAug/trainerApp/www/views/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class5 - 30thAug/trainerApp/www/views/home.html -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "www/lib" 3 | } 4 | -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/.editorconfig -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/.gitignore -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/.idea/.name: -------------------------------------------------------------------------------- 1 | demoplugins -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/.idea/demoplugins.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/.idea/demoplugins.iml -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/.idea/encodings.xml -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/.idea/misc.xml -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/.idea/modules.xml -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/.idea/vcs.xml -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/.idea/workspace.xml -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/bower.json -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/config.xml -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/gulpfile.js -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/hooks/README.md -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/ionic.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/ionic.project -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/package.json -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/resources/icon.png -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/resources/splash.png -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/scss/ionic.app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/scss/ionic.app.scss -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/www/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/www/css/style.css -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/www/img/ionic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/www/img/ionic.png -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/www/index.html -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/www/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/www/js/app.js -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/www/lib/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/www/lib/angular/README.md -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/www/lib/angular/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/www/lib/angular/index.js -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/www/lib/ionic/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/www/lib/ionic/.bower.json -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/www/lib/ionic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/www/lib/ionic/README.md -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/www/lib/ionic/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/www/lib/ionic/bower.json -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/www/lib/ionic/js/ionic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/www/lib/ionic/js/ionic.js -------------------------------------------------------------------------------- /ionic/class6 - 6thSept/demoplugins/www/lib/ngCordova/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class6 - 6thSept/demoplugins/www/lib/ngCordova/LICENSE -------------------------------------------------------------------------------- /ionic/class7 - 13thSept/demoPlugins2/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "www/lib" 3 | } 4 | -------------------------------------------------------------------------------- /ionic/class7 - 13thSept/demoPlugins2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class7 - 13thSept/demoPlugins2/.editorconfig -------------------------------------------------------------------------------- /ionic/class7 - 13thSept/demoPlugins2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class7 - 13thSept/demoPlugins2/.gitignore -------------------------------------------------------------------------------- /ionic/class7 - 13thSept/demoPlugins2/.idea/.name: -------------------------------------------------------------------------------- 1 | demoPlugins2 -------------------------------------------------------------------------------- /ionic/class7 - 13thSept/demoPlugins2/.idea/demoPlugins2.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class7 - 13thSept/demoPlugins2/.idea/demoPlugins2.iml -------------------------------------------------------------------------------- /ionic/class7 - 13thSept/demoPlugins2/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class7 - 13thSept/demoPlugins2/.idea/encodings.xml -------------------------------------------------------------------------------- /ionic/class7 - 13thSept/demoPlugins2/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class7 - 13thSept/demoPlugins2/.idea/misc.xml -------------------------------------------------------------------------------- /ionic/class7 - 13thSept/demoPlugins2/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class7 - 13thSept/demoPlugins2/.idea/modules.xml -------------------------------------------------------------------------------- /ionic/class7 - 13thSept/demoPlugins2/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class7 - 13thSept/demoPlugins2/.idea/vcs.xml -------------------------------------------------------------------------------- /ionic/class7 - 13thSept/demoPlugins2/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class7 - 13thSept/demoPlugins2/.idea/workspace.xml -------------------------------------------------------------------------------- /ionic/class7 - 13thSept/demoPlugins2/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class7 - 13thSept/demoPlugins2/bower.json -------------------------------------------------------------------------------- /ionic/class7 - 13thSept/demoPlugins2/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class7 - 13thSept/demoPlugins2/config.xml -------------------------------------------------------------------------------- /ionic/class7 - 13thSept/demoPlugins2/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class7 - 13thSept/demoPlugins2/gulpfile.js -------------------------------------------------------------------------------- /ionic/class7 - 13thSept/demoPlugins2/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class7 - 13thSept/demoPlugins2/hooks/README.md -------------------------------------------------------------------------------- /ionic/class7 - 13thSept/demoPlugins2/ionic.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class7 - 13thSept/demoPlugins2/ionic.project -------------------------------------------------------------------------------- /ionic/class7 - 13thSept/demoPlugins2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class7 - 13thSept/demoPlugins2/package.json -------------------------------------------------------------------------------- /ionic/class7 - 13thSept/demoPlugins2/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class7 - 13thSept/demoPlugins2/resources/icon.png -------------------------------------------------------------------------------- /ionic/class7 - 13thSept/demoPlugins2/resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class7 - 13thSept/demoPlugins2/resources/splash.png -------------------------------------------------------------------------------- /ionic/class7 - 13thSept/demoPlugins2/scss/ionic.app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class7 - 13thSept/demoPlugins2/scss/ionic.app.scss -------------------------------------------------------------------------------- /ionic/class7 - 13thSept/demoPlugins2/www/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class7 - 13thSept/demoPlugins2/www/css/style.css -------------------------------------------------------------------------------- /ionic/class7 - 13thSept/demoPlugins2/www/img/ionic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class7 - 13thSept/demoPlugins2/www/img/ionic.png -------------------------------------------------------------------------------- /ionic/class7 - 13thSept/demoPlugins2/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class7 - 13thSept/demoPlugins2/www/index.html -------------------------------------------------------------------------------- /ionic/class7 - 13thSept/demoPlugins2/www/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class7 - 13thSept/demoPlugins2/www/js/app.js -------------------------------------------------------------------------------- /ionic/class7 - 13thSept/demoPlugins2/www/lib/ionic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohammedTaha/MassTrainingBatch2/HEAD/ionic/class7 - 13thSept/demoPlugins2/www/lib/ionic/README.md --------------------------------------------------------------------------------