├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── assets ├── .gitignore ├── add-node-modules.png ├── angularFileTemplateSettings.jar ├── enabled-js-libraries.png └── npm-global-pkgs.png ├── azure.err ├── cc-bmean ├── .bowerrc ├── .gitignore ├── .jscsrc ├── .jshintrc ├── bower.json ├── grunt │ ├── .jshintrc │ ├── configloader.js │ ├── gruntfile.js │ ├── options │ │ ├── jshint.js │ │ ├── ngmin.js │ │ └── watch.js │ └── package.json ├── gulp │ ├── commentWrapper.js │ └── common.js ├── gulpfile.js ├── karma.conf.js ├── package.json ├── readme.md └── src │ ├── client │ ├── app │ │ ├── app.module.js │ │ ├── attendee │ │ │ ├── attendees.html │ │ │ ├── attendees.js │ │ │ ├── attendees.module.js │ │ │ └── config.route.js │ │ ├── blocks │ │ │ ├── exception │ │ │ │ ├── exception-handler.js │ │ │ │ ├── exception.js │ │ │ │ └── exception.module.js │ │ │ ├── logger │ │ │ │ ├── logger.js │ │ │ │ └── logger.module.js │ │ │ └── router │ │ │ │ ├── routehelper.js │ │ │ │ └── router.module.js │ │ ├── core │ │ │ ├── bootstrap.dialog.js │ │ │ ├── common.js │ │ │ ├── config.breeze.js │ │ │ ├── config.js │ │ │ ├── constants.js │ │ │ └── core.module.js │ │ ├── dashboard │ │ │ ├── config.route.js │ │ │ ├── dashboard.html │ │ │ ├── dashboard.js │ │ │ └── dashboard.module.js │ │ ├── data │ │ │ ├── data.module.js │ │ │ ├── datacontext.js │ │ │ ├── entityManagerFactory.js │ │ │ ├── model.js │ │ │ ├── model.metadata.js │ │ │ ├── model.validation.js │ │ │ └── repositories │ │ │ │ ├── repository.abstract.js │ │ │ │ ├── repository.attendee.js │ │ │ │ ├── repository.lookup.js │ │ │ │ ├── repository.session.js │ │ │ │ └── repository.speaker.js │ │ ├── layout │ │ │ ├── layout.module.js │ │ │ ├── shell.html │ │ │ ├── shell.js │ │ │ ├── sidebar.html │ │ │ ├── sidebar.js │ │ │ └── topnav.html │ │ ├── session │ │ │ ├── config.route.js │ │ │ ├── session.module.js │ │ │ ├── sessiondetail.html │ │ │ ├── sessiondetail.js │ │ │ ├── sessions-spaghetti.js │ │ │ ├── sessions.html │ │ │ └── sessions.js │ │ ├── speaker │ │ │ ├── config.route.js │ │ │ ├── speaker.module.js │ │ │ ├── speakerdetail.html │ │ │ ├── speakerdetail.js │ │ │ ├── speakers.html │ │ │ └── speakers.js │ │ ├── widgets │ │ │ ├── ccImgPerson.js │ │ │ ├── ccScrollToTop.js │ │ │ ├── ccSidebar.js │ │ │ ├── ccWidgetClose.js │ │ │ ├── ccWidgetHeader.js │ │ │ ├── ccWidgetMinimize.js │ │ │ ├── ccWip.js │ │ │ ├── widgetheader.html │ │ │ └── widgets.module.js │ │ └── wip │ │ │ ├── config.route.js │ │ │ ├── wip.html │ │ │ ├── wip.js │ │ │ ├── wip.module.js │ │ │ └── wipwidget.html │ ├── content │ │ ├── customtheme.css │ │ ├── images │ │ │ ├── AngularJS-small.png │ │ │ ├── breezelogo.png │ │ │ ├── busy.gif │ │ │ ├── busyatom.gif │ │ │ ├── busyblue.gif │ │ │ ├── glyphicons-halflings-white.png │ │ │ ├── glyphicons-halflings.png │ │ │ ├── icon.png │ │ │ └── photos │ │ │ │ ├── aaron_skonnard.jpg │ │ │ │ ├── anant-narayanan.png │ │ │ │ ├── ari-lerner.png │ │ │ │ ├── ben-clinkinbeard.png │ │ │ │ ├── ben-teese.png │ │ │ │ ├── brad_green.jpg │ │ │ │ ├── brian-ford.png │ │ │ │ ├── burke-holland.png │ │ │ │ ├── cat.jpg │ │ │ │ ├── christian-lilley.png │ │ │ │ ├── colleen_papa.jpg │ │ │ │ ├── craig_shoemaker.jpg │ │ │ │ ├── dan_wahlin.jpg │ │ │ │ ├── dave-smith.png │ │ │ │ ├── dave_ward.jpg │ │ │ │ ├── elijah_manor.jpg │ │ │ │ ├── eric_barnard.jpg │ │ │ │ ├── esteban_garcia.jpg │ │ │ │ ├── felix_fanboi.jpg │ │ │ │ ├── fritz_onion.jpg │ │ │ │ ├── glenn_block.jpg │ │ │ │ ├── hans_fjallemark.jpg │ │ │ │ ├── howard_dierking.jpg │ │ │ │ ├── igor_minar.jpg │ │ │ │ ├── james-deboer.png │ │ │ │ ├── jason-aden.png │ │ │ │ ├── jason_salmond.jpg │ │ │ │ ├── jeff-cross.png │ │ │ │ ├── jesse_liberty.jpg │ │ │ │ ├── jim_cowart.jpg │ │ │ │ ├── john-lindquist.png │ │ │ │ ├── john_papa.jpg │ │ │ │ ├── john_smith.jpg │ │ │ │ ├── john_sonmez.jpg │ │ │ │ ├── julie-ralph.png │ │ │ │ ├── julie_lerman.jpg │ │ │ │ ├── keith_sparkjoy.jpg │ │ │ │ ├── lukas-ruebbelke.png │ │ │ │ ├── mads_kristensen.jpg │ │ │ │ ├── matias-niemela.png │ │ │ │ ├── max-lynch.png │ │ │ │ ├── megan_russell.jpg │ │ │ │ ├── mike_callaghan.jpg │ │ │ │ ├── mike_woodring.jpg │ │ │ │ ├── misko-hevery.png │ │ │ │ ├── pete_brown.jpg │ │ │ │ ├── rey_bango.jpg │ │ │ │ ├── rob_eisenberg.jpg │ │ │ │ ├── ron-evans.png │ │ │ │ ├── ryan_niemeyer.jpg │ │ │ │ ├── scott_guthrie.jpg │ │ │ │ ├── scott_hanselman.jpg │ │ │ │ ├── scott_hunter.jpg │ │ │ │ ├── sean-hess.png │ │ │ │ ├── sharon-diorio.png │ │ │ │ ├── shawn_wildermuth.jpg │ │ │ │ ├── silvano-luciani.png │ │ │ │ ├── steve_sanderson.jpg │ │ │ │ ├── sue_menot.jpg │ │ │ │ ├── thomas-burleson.png │ │ │ │ ├── tim_heuer.jpg │ │ │ │ ├── unknown_person.jpg │ │ │ │ ├── vojta-jina.png │ │ │ │ ├── ward-bell.png │ │ │ │ └── ward_bell.jpg │ │ └── styles.css │ ├── index.html │ └── test │ │ ├── .jshintrc │ │ ├── basics │ │ ├── assertions.spec.js │ │ └── basics.src.js │ │ ├── lib │ │ ├── bindPolyfill.js │ │ ├── mockData.js │ │ └── specHelper.js │ │ ├── midway │ │ └── template.spec.js │ │ └── specs │ │ ├── ccSidebar.spec.js │ │ └── injector.spec.js │ └── server │ ├── app.js │ ├── data │ ├── dataconfig.js │ ├── mongodb.config │ └── ngCodeCamper.zip │ ├── favicon.ico │ └── routes │ ├── index.js │ └── utils │ └── errorHandler.js ├── deploy.sh ├── grunt-gulp ├── README.md ├── _safe │ └── gulpfile.js ├── app │ ├── app.js │ ├── avengers │ │ ├── avengers.html │ │ └── avengers.js │ ├── common │ │ ├── bootstrap.dialog.js │ │ ├── bootstrap │ │ │ └── bootstrap.dialog.js │ │ ├── common.js │ │ ├── logger.js │ │ └── spinner.js │ ├── config.exceptionHandler.js │ ├── config.js │ ├── config.route.js │ ├── dashboard │ │ ├── dashboard.html │ │ └── dashboard.js │ ├── layout │ │ ├── shell.html │ │ ├── shell.js │ │ ├── sidebar.html │ │ ├── sidebar.js │ │ ├── topnav.html │ │ └── widgetheader.html │ └── services │ │ ├── datacontext.js │ │ └── directives.js ├── build-grunt │ ├── configloader.js │ ├── gruntfile.js │ ├── jshintrc.json │ ├── options │ │ ├── clean.js │ │ ├── concat.js │ │ ├── copy.js │ │ ├── jshint.js │ │ ├── ngmin.js │ │ ├── uglify.js │ │ └── watch.js │ ├── package.json │ └── tasks │ │ └── example.js ├── build-gulp │ ├── commentWrapper.js │ ├── common.js │ ├── gulpfile.js │ ├── gulpfile_empty.js │ ├── jshintrc.json │ └── package.json ├── content │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── customtheme.css │ ├── font-awesome.css │ ├── font-awesome.min.css │ ├── images │ │ ├── AngularJS-small.png │ │ ├── avengersicon-xs.png │ │ ├── avengersicon.png │ │ ├── gg.png │ │ └── gruntjs.jpg │ ├── styles.css │ ├── toastr.css │ └── toastr.min.css ├── data │ ├── maa.json │ ├── marvelavengersalliance.json │ └── thor.json ├── favicon.ico ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── index.html ├── jsonfileservice.js ├── package.json ├── routes.js ├── scripts │ ├── angular-animate.js │ ├── angular-animate.min.js │ ├── angular-animate.min.js.map │ ├── angular-route.js │ ├── angular-route.min.js │ ├── angular-route.min.js.map │ ├── angular-sanitize.js │ ├── angular-sanitize.min.js │ ├── angular-sanitize.min.js.map │ ├── angular.js │ ├── angular.min.js │ ├── angular.min.js.map │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-2.0.3.js │ ├── jquery-2.0.3.min.js │ ├── jquery-2.0.3.min.map │ ├── moment-with-langs.js │ ├── moment-with-langs.min.js │ ├── moment.js │ ├── moment.min.js │ ├── spin.js │ ├── spin.min.js │ ├── toastr.js │ ├── toastr.min.js │ ├── toastr.min.js.map │ ├── ui-bootstrap-tpls-0.10.0.js │ └── ui-bootstrap-tpls-0.10.0.min.js └── server.js ├── hottowel └── README.md ├── modular ├── .bowerrc ├── .deployment ├── .gitignore ├── .jscsrc ├── .jshintrc ├── README.md ├── bower.json ├── deploy.sh ├── gulp.config.json ├── gulp │ ├── commentWrapper.js │ ├── common.js │ └── copyright.js ├── gulpfile.js ├── iisnode.yml ├── karma.conf.js ├── package.json └── src │ ├── client │ ├── app │ │ ├── app.module.js │ │ ├── avengers │ │ │ ├── avengers-spaghetti.js │ │ │ ├── avengers.html │ │ │ ├── avengers.js │ │ │ ├── avengers.module.js │ │ │ └── config.route.js │ │ ├── blocks │ │ │ ├── exception │ │ │ │ ├── exception-handler.provider.js │ │ │ │ ├── exception.js │ │ │ │ └── exception.module.js │ │ │ ├── logger │ │ │ │ ├── logger.js │ │ │ │ └── logger.module.js │ │ │ └── router │ │ │ │ ├── routehelper.js │ │ │ │ └── router.module.js │ │ ├── core │ │ │ ├── config.js │ │ │ ├── constants.js │ │ │ ├── core.module.js │ │ │ └── dataservice.js │ │ ├── dashboard │ │ │ ├── config.route.js │ │ │ ├── dashboard.html │ │ │ ├── dashboard.js │ │ │ └── dashboard.module.js │ │ ├── layout │ │ │ ├── layout.module.js │ │ │ ├── shell.html │ │ │ ├── shell.js │ │ │ ├── sidebar.html │ │ │ ├── sidebar.js │ │ │ └── topnav.html │ │ └── widgets │ │ │ ├── ccSidebar.js │ │ │ ├── ccSpinner.js │ │ │ ├── ccWidgetClose.js │ │ │ ├── ccWidgetHeader.js │ │ │ ├── ccWidgetMinimize.js │ │ │ ├── widgetheader.html │ │ │ └── widgets.module.js │ ├── content │ │ ├── customtheme.css │ │ ├── images │ │ │ ├── AngularJS-small.png │ │ │ ├── avengersicon-xs.png │ │ │ ├── avengersicon.png │ │ │ ├── busy.gif │ │ │ ├── gg.png │ │ │ └── gruntjs.jpg │ │ └── styles.css │ ├── index.html │ └── test │ │ ├── .jshintrc │ │ ├── lib │ │ ├── bindPolyfill.js │ │ ├── mockData.js │ │ └── specHelper.js │ │ ├── midway │ │ ├── controller.spec.js │ │ ├── dataservice.spec.js │ │ ├── template.spec.js │ │ └── view-requests.spec.js │ │ └── specs │ │ ├── avengers-route.spec.js │ │ ├── avengers.spec.js │ │ ├── ccSidebar.spec.js │ │ ├── dashboard-route.spec.js │ │ ├── dashboard.spec.js │ │ ├── dataservice.spec.js │ │ ├── exception-handler.provider.spec.js │ │ └── sidebar.spec.js │ └── server │ ├── app.js │ ├── data │ ├── maa.json │ ├── marvelavengersalliance.json │ └── thor.json │ ├── favicon.ico │ └── routes │ ├── index.js │ └── utils │ ├── errorHandler.js │ └── jsonfileservice.js ├── ng-1.3 playground ├── .jscsrc ├── .jshintrc ├── README.md ├── bower.json ├── gulp.config.json ├── gulpfile.js ├── karma.conf.js ├── package.json ├── scripts │ ├── angular-animate.js │ ├── angular-animate.min.js │ ├── angular-animate.min.js.map │ ├── angular-route.js │ ├── angular-route.min.js │ ├── angular-route.min.js.map │ ├── angular-sanitize.js │ ├── angular-sanitize.min.js │ ├── angular-sanitize.min.js.map │ ├── angular.js │ ├── angular.min.js │ ├── angular.min.js.map │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-2.0.3.js │ ├── jquery-2.0.3.min.js │ ├── jquery-2.0.3.min.map │ ├── moment-with-langs.js │ ├── moment-with-langs.min.js │ ├── moment.js │ ├── moment.min.js │ ├── spin.js │ ├── spin.min.js │ ├── toastr.js │ ├── toastr.min.js │ ├── toastr.min.js.map │ ├── ui-bootstrap-tpls-0.10.0.js │ └── ui-bootstrap-tpls-0.10.0.min.js └── src │ ├── client │ ├── app │ │ ├── app.module.js │ │ ├── bind-once │ │ │ ├── bind-once.controller.js │ │ │ ├── bind-once.html │ │ │ ├── bind-once.module.js │ │ │ └── config.route.js │ │ ├── bind-to-controller │ │ │ ├── bind-to-controller.controller.js │ │ │ ├── bind-to-controller.html │ │ │ ├── bind-to-controller.module.js │ │ │ ├── config.route.js │ │ │ ├── music-player.directive.js │ │ │ └── person.directive.js │ │ ├── blocks │ │ │ ├── exception │ │ │ │ ├── exception-handler.provider.js │ │ │ │ ├── exception.js │ │ │ │ └── exception.module.js │ │ │ ├── logger │ │ │ │ ├── logger.js │ │ │ │ └── logger.module.js │ │ │ └── router │ │ │ │ ├── routehelper.js │ │ │ │ └── router.module.js │ │ ├── core │ │ │ ├── config.js │ │ │ ├── constants.js │ │ │ ├── core.module.js │ │ │ └── dataservice.js │ │ ├── dashboard │ │ │ ├── config.route.js │ │ │ ├── dashboard.controller.js │ │ │ ├── dashboard.html │ │ │ └── dashboard.module.js │ │ ├── layout │ │ │ ├── layout.module.js │ │ │ ├── shell.controller.js │ │ │ ├── shell.html │ │ │ ├── sidebar.controller.js │ │ │ ├── sidebar.html │ │ │ └── topnav.html │ │ ├── model-options │ │ │ ├── config.route.js │ │ │ ├── model-options.controller.js │ │ │ ├── model-options.html │ │ │ └── model-options.module.js │ │ ├── other │ │ │ ├── config.route.js │ │ │ ├── other.module.js │ │ │ ├── q.controller.js │ │ │ └── q.html │ │ └── widgets │ │ │ ├── ccImgPerson.directive.js │ │ │ ├── ccSidebar.directive.js │ │ │ ├── ccSpinner.directive.js │ │ │ ├── ccWidgetClose.directive.js │ │ │ ├── ccWidgetHeader.directive.js │ │ │ ├── ccWidgetMinimize.directive.js │ │ │ ├── note.directive.js │ │ │ ├── widgetheader.html │ │ │ └── widgets.module.js │ ├── content │ │ ├── customtheme.css │ │ ├── images │ │ │ ├── AngularJS-small.png │ │ │ ├── avengersicon-xs.png │ │ │ ├── avengersicon.png │ │ │ ├── busy.gif │ │ │ ├── gg.png │ │ │ ├── gruntjs.jpg │ │ │ └── photos │ │ │ │ ├── aaron_skonnard.jpg │ │ │ │ ├── anant-narayanan.png │ │ │ │ ├── ari-lerner.png │ │ │ │ ├── ben-clinkinbeard.png │ │ │ │ ├── ben-teese.png │ │ │ │ ├── brad_green.jpg │ │ │ │ ├── brian-ford.png │ │ │ │ ├── burke-holland.png │ │ │ │ ├── cat.jpg │ │ │ │ ├── christian-lilley.png │ │ │ │ ├── colleen_papa.jpg │ │ │ │ ├── craig_shoemaker.jpg │ │ │ │ ├── dan_wahlin.jpg │ │ │ │ ├── dave-smith.png │ │ │ │ ├── dave_ward.jpg │ │ │ │ ├── elijah_manor.jpg │ │ │ │ ├── eric_barnard.jpg │ │ │ │ ├── esteban_garcia.jpg │ │ │ │ ├── felix_fanboi.jpg │ │ │ │ ├── fritz_onion.jpg │ │ │ │ ├── glenn_block.jpg │ │ │ │ ├── hans_fjallemark.jpg │ │ │ │ ├── howard_dierking.jpg │ │ │ │ ├── igor_minar.jpg │ │ │ │ ├── james-deboer.png │ │ │ │ ├── jason-aden.png │ │ │ │ ├── jason_salmond.jpg │ │ │ │ ├── jeff-cross.png │ │ │ │ ├── jesse_liberty.jpg │ │ │ │ ├── jim_cowart.jpg │ │ │ │ ├── john-lindquist.png │ │ │ │ ├── john_papa.jpg │ │ │ │ ├── john_smith.jpg │ │ │ │ ├── john_sonmez.jpg │ │ │ │ ├── julie-ralph.png │ │ │ │ ├── julie_lerman.jpg │ │ │ │ ├── keith_sparkjoy.jpg │ │ │ │ ├── lukas-ruebbelke.png │ │ │ │ ├── mads_kristensen.jpg │ │ │ │ ├── matias-niemela.png │ │ │ │ ├── max-lynch.png │ │ │ │ ├── megan_russell.jpg │ │ │ │ ├── mike_callaghan.jpg │ │ │ │ ├── mike_woodring.jpg │ │ │ │ ├── misko-hevery.png │ │ │ │ ├── pete_brown.jpg │ │ │ │ ├── rey_bango.jpg │ │ │ │ ├── rob_eisenberg.jpg │ │ │ │ ├── ron-evans.png │ │ │ │ ├── ryan_niemeyer.jpg │ │ │ │ ├── scott_guthrie.jpg │ │ │ │ ├── scott_hanselman.jpg │ │ │ │ ├── scott_hunter.jpg │ │ │ │ ├── sean-hess.png │ │ │ │ ├── sharon-diorio.png │ │ │ │ ├── shawn_wildermuth.jpg │ │ │ │ ├── silvano-luciani.png │ │ │ │ ├── steve_sanderson.jpg │ │ │ │ ├── sue_menot.jpg │ │ │ │ ├── thomas-burleson.png │ │ │ │ ├── tim_heuer.jpg │ │ │ │ ├── unknown_person.jpg │ │ │ │ ├── vojta-jina.png │ │ │ │ ├── ward-bell.png │ │ │ │ └── ward_bell.jpg │ │ └── styles.css │ ├── index.html │ └── test │ │ ├── .jshintrc │ │ ├── lib │ │ ├── bindPolyfill.js │ │ ├── mockData.js │ │ └── specHelper.js │ │ └── specs │ │ ├── avengers-route.spec.js │ │ ├── avengers.spec.js │ │ ├── ccSidebar.spec.js │ │ ├── dashboard-route.spec.js │ │ ├── dashboard.spec.js │ │ ├── dataservice.spec.js │ │ ├── exception-handler.provider.spec.js │ │ └── sidebar.spec.js │ └── server │ ├── app.js │ ├── data │ ├── customers.json │ ├── maa.json │ ├── marvelavengersalliance.json │ └── thor.json │ ├── favicon.ico │ └── routes │ ├── index.js │ └── utils │ ├── errorHandler.js │ └── jsonfileservice.js ├── ng-jwt ├── README.md ├── bower.json ├── bower_components │ ├── angular-animate │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-animate.js │ │ ├── angular-animate.min.js │ │ ├── angular-animate.min.js.map │ │ └── bower.json │ ├── angular-route │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-route.js │ │ ├── angular-route.min.js │ │ ├── angular-route.min.js.map │ │ └── bower.json │ ├── angular-sanitize │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-sanitize.js │ │ ├── angular-sanitize.min.js │ │ ├── angular-sanitize.min.js.map │ │ └── bower.json │ ├── angular-ui-bootstrap-bower │ │ ├── .bower.json │ │ ├── bower.json │ │ ├── ui-bootstrap-tpls.js │ │ ├── ui-bootstrap-tpls.min.js │ │ ├── ui-bootstrap.js │ │ └── ui-bootstrap.min.js │ ├── angular-ui-bootstrap │ │ ├── .bower.json │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── docs │ │ │ ├── css │ │ │ │ └── style.css │ │ │ └── nav.html │ │ ├── karma.conf.js │ │ ├── misc │ │ │ ├── changelog.tpl.md │ │ │ ├── demo │ │ │ │ ├── assets │ │ │ │ │ ├── app.js │ │ │ │ │ ├── demo.css │ │ │ │ │ ├── github-16px.png │ │ │ │ │ ├── header.png │ │ │ │ │ ├── img │ │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ │ └── glyphicons-halflings.png │ │ │ │ │ ├── plunker.js │ │ │ │ │ ├── rainbow-generic.js │ │ │ │ │ ├── rainbow-html.js │ │ │ │ │ ├── rainbow-javascript.js │ │ │ │ │ ├── rainbow.css │ │ │ │ │ ├── rainbow.js │ │ │ │ │ └── smoothscroll-angular-custom.js │ │ │ │ └── index.html │ │ │ ├── test-lib │ │ │ │ ├── angular-mocks.js │ │ │ │ ├── angular.js │ │ │ │ ├── helpers.js │ │ │ │ └── jquery-1.8.2.min.js │ │ │ └── validate-commit-msg.js │ │ ├── package.json │ │ ├── src │ │ │ ├── accordion │ │ │ │ ├── accordion.js │ │ │ │ ├── docs │ │ │ │ │ ├── demo.html │ │ │ │ │ ├── demo.js │ │ │ │ │ └── readme.md │ │ │ │ └── test │ │ │ │ │ └── accordion.spec.js │ │ │ ├── alert │ │ │ │ ├── alert.js │ │ │ │ ├── docs │ │ │ │ │ ├── demo.html │ │ │ │ │ ├── demo.js │ │ │ │ │ └── readme.md │ │ │ │ └── test │ │ │ │ │ └── alert.spec.js │ │ │ ├── bindHtml │ │ │ │ └── bindHtml.js │ │ │ ├── buttons │ │ │ │ ├── buttons.js │ │ │ │ ├── docs │ │ │ │ │ ├── demo.html │ │ │ │ │ ├── demo.js │ │ │ │ │ └── readme.md │ │ │ │ └── test │ │ │ │ │ └── buttons.spec.js │ │ │ ├── carousel │ │ │ │ ├── carousel.js │ │ │ │ ├── docs │ │ │ │ │ ├── README.md │ │ │ │ │ ├── demo.html │ │ │ │ │ └── demo.js │ │ │ │ └── test │ │ │ │ │ └── carousel.spec.js │ │ │ ├── collapse │ │ │ │ ├── collapse.js │ │ │ │ ├── docs │ │ │ │ │ ├── demo.html │ │ │ │ │ ├── demo.js │ │ │ │ │ └── readme.md │ │ │ │ └── test │ │ │ │ │ └── collapse.spec.js │ │ │ ├── datepicker │ │ │ │ ├── datepicker.js │ │ │ │ ├── docs │ │ │ │ │ ├── demo.html │ │ │ │ │ ├── demo.js │ │ │ │ │ └── readme.md │ │ │ │ └── test │ │ │ │ │ └── datepicker.spec.js │ │ │ ├── dropdownToggle │ │ │ │ ├── docs │ │ │ │ │ ├── demo.html │ │ │ │ │ ├── demo.js │ │ │ │ │ └── readme.md │ │ │ │ ├── dropdownToggle.js │ │ │ │ └── test │ │ │ │ │ └── dropdownToggle.spec.js │ │ │ ├── modal │ │ │ │ ├── docs │ │ │ │ │ ├── demo.html │ │ │ │ │ ├── demo.js │ │ │ │ │ └── readme.md │ │ │ │ ├── modal.js │ │ │ │ └── test │ │ │ │ │ ├── modal.spec.js │ │ │ │ │ ├── modalWindow.spec.js │ │ │ │ │ └── stackedMap.spec.js │ │ │ ├── pagination │ │ │ │ ├── docs │ │ │ │ │ ├── demo.html │ │ │ │ │ ├── demo.js │ │ │ │ │ └── readme.md │ │ │ │ ├── pagination.js │ │ │ │ └── test │ │ │ │ │ ├── pager.spec.js │ │ │ │ │ └── pagination.spec.js │ │ │ ├── popover │ │ │ │ ├── docs │ │ │ │ │ ├── demo.html │ │ │ │ │ ├── demo.js │ │ │ │ │ └── readme.md │ │ │ │ ├── popover.js │ │ │ │ └── test │ │ │ │ │ └── popover.spec.js │ │ │ ├── position │ │ │ │ ├── position.js │ │ │ │ └── test │ │ │ │ │ └── test.html │ │ │ ├── progressbar │ │ │ │ ├── docs │ │ │ │ │ ├── demo.html │ │ │ │ │ ├── demo.js │ │ │ │ │ └── readme.md │ │ │ │ ├── progressbar.js │ │ │ │ └── test │ │ │ │ │ └── progressbar.spec.js │ │ │ ├── rating │ │ │ │ ├── docs │ │ │ │ │ ├── demo.html │ │ │ │ │ ├── demo.js │ │ │ │ │ └── readme.md │ │ │ │ ├── rating.js │ │ │ │ └── test │ │ │ │ │ └── rating.spec.js │ │ │ ├── tabs │ │ │ │ ├── docs │ │ │ │ │ ├── demo.html │ │ │ │ │ ├── demo.js │ │ │ │ │ └── readme.md │ │ │ │ ├── tabs.js │ │ │ │ └── test │ │ │ │ │ └── tabs.spec.js │ │ │ ├── timepicker │ │ │ │ ├── docs │ │ │ │ │ ├── demo.html │ │ │ │ │ ├── demo.js │ │ │ │ │ └── readme.md │ │ │ │ ├── test │ │ │ │ │ └── timepicker.spec.js │ │ │ │ └── timepicker.js │ │ │ ├── tooltip │ │ │ │ ├── docs │ │ │ │ │ ├── demo.html │ │ │ │ │ ├── demo.js │ │ │ │ │ └── readme.md │ │ │ │ ├── test │ │ │ │ │ ├── tooltip.spec.js │ │ │ │ │ └── tooltip2.spec.js │ │ │ │ └── tooltip.js │ │ │ ├── transition │ │ │ │ ├── test │ │ │ │ │ └── transition.spec.js │ │ │ │ └── transition.js │ │ │ └── typeahead │ │ │ │ ├── docs │ │ │ │ ├── demo.html │ │ │ │ ├── demo.js │ │ │ │ └── readme.md │ │ │ │ ├── test │ │ │ │ ├── typeahead-highlight.spec.js │ │ │ │ ├── typeahead-parser.spec.js │ │ │ │ ├── typeahead-popup.spec.js │ │ │ │ └── typeahead.spec.js │ │ │ │ └── typeahead.js │ │ └── template │ │ │ ├── accordion │ │ │ ├── accordion-group.html │ │ │ └── accordion.html │ │ │ ├── alert │ │ │ └── alert.html │ │ │ ├── carousel │ │ │ ├── carousel.html │ │ │ └── slide.html │ │ │ ├── datepicker │ │ │ ├── datepicker.html │ │ │ └── popup.html │ │ │ ├── modal │ │ │ ├── backdrop.html │ │ │ └── window.html │ │ │ ├── pagination │ │ │ ├── pager.html │ │ │ └── pagination.html │ │ │ ├── popover │ │ │ └── popover.html │ │ │ ├── progressbar │ │ │ ├── bar.html │ │ │ ├── progress.html │ │ │ └── progressbar.html │ │ │ ├── rating │ │ │ └── rating.html │ │ │ ├── tabs │ │ │ ├── tab.html │ │ │ └── tabset.html │ │ │ ├── timepicker │ │ │ └── timepicker.html │ │ │ ├── tooltip │ │ │ ├── tooltip-html-unsafe-popup.html │ │ │ └── tooltip-popup.html │ │ │ └── typeahead │ │ │ ├── typeahead-match.html │ │ │ └── typeahead-popup.html │ ├── angular │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-csp.css │ │ ├── angular.js │ │ ├── angular.min.js │ │ ├── angular.min.js.gzip │ │ ├── angular.min.js.map │ │ └── bower.json │ ├── bootstrap │ │ ├── .bower.json │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── grunt │ │ │ ├── bs-glyphicons-data-generator.js │ │ │ ├── bs-lessdoc-parser.js │ │ │ ├── bs-raw-files-generator.js │ │ │ └── shrinkwrap.js │ │ ├── js │ │ │ ├── affix.js │ │ │ ├── alert.js │ │ │ ├── button.js │ │ │ ├── carousel.js │ │ │ ├── collapse.js │ │ │ ├── dropdown.js │ │ │ ├── modal.js │ │ │ ├── popover.js │ │ │ ├── scrollspy.js │ │ │ ├── tab.js │ │ │ ├── tooltip.js │ │ │ └── transition.js │ │ ├── less │ │ │ ├── alerts.less │ │ │ ├── badges.less │ │ │ ├── bootstrap.less │ │ │ ├── breadcrumbs.less │ │ │ ├── button-groups.less │ │ │ ├── buttons.less │ │ │ ├── carousel.less │ │ │ ├── close.less │ │ │ ├── code.less │ │ │ ├── component-animations.less │ │ │ ├── dropdowns.less │ │ │ ├── forms.less │ │ │ ├── glyphicons.less │ │ │ ├── grid.less │ │ │ ├── input-groups.less │ │ │ ├── jumbotron.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── media.less │ │ │ ├── mixins.less │ │ │ ├── modals.less │ │ │ ├── navbar.less │ │ │ ├── navs.less │ │ │ ├── normalize.less │ │ │ ├── pager.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── popovers.less │ │ │ ├── print.less │ │ │ ├── progress-bars.less │ │ │ ├── responsive-utilities.less │ │ │ ├── scaffolding.less │ │ │ ├── tables.less │ │ │ ├── theme.less │ │ │ ├── thumbnails.less │ │ │ ├── tooltip.less │ │ │ ├── type.less │ │ │ ├── utilities.less │ │ │ ├── variables.less │ │ │ └── wells.less │ │ ├── package.json │ │ └── test-infra │ │ │ ├── README.md │ │ │ ├── npm-shrinkwrap.canonical.json │ │ │ ├── requirements.txt │ │ │ ├── s3_cache.py │ │ │ ├── sauce_browsers.yml │ │ │ └── uncached-npm-install.sh │ ├── font-awesome │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── Gemfile │ │ ├── README.md │ │ ├── _config.yml │ │ ├── component.json │ │ ├── composer.json │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── extras.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── spinning.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ ├── package.json │ │ ├── scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _extras.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _spinning.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ └── src │ │ │ ├── CNAME │ │ │ ├── Makefile │ │ │ ├── _includes │ │ │ ├── ads │ │ │ │ ├── carbon-dark-vertical.html │ │ │ │ ├── carbon-light-horizontal.html │ │ │ │ └── carbon-light-vertical.html │ │ │ ├── brand-license.html │ │ │ ├── community │ │ │ │ ├── getting-support.html │ │ │ │ ├── project-milestones.html │ │ │ │ ├── reporting-bugs.html │ │ │ │ ├── requesting-new-icons.html │ │ │ │ └── submitting-pull-requests.html │ │ │ ├── examples │ │ │ │ ├── bootstrap.html │ │ │ │ ├── bordered-pulled.html │ │ │ │ ├── custom.html │ │ │ │ ├── fixed-width.html │ │ │ │ ├── inline.html │ │ │ │ ├── larger.html │ │ │ │ ├── list.html │ │ │ │ ├── rotated-flipped.html │ │ │ │ ├── spinning.html │ │ │ │ └── stacked.html │ │ │ ├── footer.html │ │ │ ├── jumbotron-carousel.html │ │ │ ├── jumbotron.html │ │ │ ├── license-code.less │ │ │ ├── navbar.html │ │ │ ├── new-features.html │ │ │ ├── new-naming.html │ │ │ ├── new-upgrading.html │ │ │ ├── stripe-ad.html │ │ │ ├── stripe-social.html │ │ │ ├── tell-me-thanks.html │ │ │ ├── tests │ │ │ │ ├── rotated-flipped-inside-anchor.html │ │ │ │ ├── rotated-flipped-inside-btn.html │ │ │ │ ├── rotated-flipped.html │ │ │ │ ├── stacked-inside-anchor.html │ │ │ │ └── stacked.html │ │ │ ├── thanks-to.html │ │ │ └── why.html │ │ │ ├── _layouts │ │ │ ├── base.html │ │ │ └── icon.html │ │ │ ├── _plugins │ │ │ ├── icon_page_generator.rb │ │ │ └── site.rb │ │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── prettify.css │ │ │ │ └── pygments.css │ │ │ ├── font-awesome │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ ├── less │ │ │ │ │ ├── bordered-pulled.less │ │ │ │ │ ├── core.less │ │ │ │ │ ├── fixed-width.less │ │ │ │ │ ├── font-awesome.less │ │ │ │ │ ├── icons.less │ │ │ │ │ ├── larger.less │ │ │ │ │ ├── list.less │ │ │ │ │ ├── mixins.less │ │ │ │ │ ├── path.less │ │ │ │ │ ├── rotated-flipped.less │ │ │ │ │ ├── spinning.less │ │ │ │ │ ├── stacked.less │ │ │ │ │ └── variables.less │ │ │ │ └── scss │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ ├── _core.scss │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ ├── _icons.scss │ │ │ │ │ ├── _larger.scss │ │ │ │ │ ├── _list.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _path.scss │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ ├── _spinning.scss │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font-awesome.scss │ │ │ ├── ico │ │ │ │ └── favicon.ico │ │ │ ├── js │ │ │ │ ├── ZeroClipboard-1.1.7.min.js │ │ │ │ ├── ZeroClipboard-1.1.7.swf │ │ │ │ ├── backbone.min.js │ │ │ │ ├── bootstrap-2.3.1.min.js │ │ │ │ ├── bootstrap-222.min.js │ │ │ │ ├── bootstrap-3.0.0.min.js │ │ │ │ ├── html5shiv.js │ │ │ │ ├── jquery-1.10.2.js │ │ │ │ ├── jquery-1.10.2.min.js │ │ │ │ ├── jquery-1.10.2.min.map │ │ │ │ ├── jquery-1.7.1.min.js │ │ │ │ ├── prettify.min.js │ │ │ │ ├── respond.min.js │ │ │ │ ├── site.js │ │ │ │ └── underscore.min.js │ │ │ └── less │ │ │ │ ├── site.less │ │ │ │ └── site │ │ │ │ ├── bootstrap │ │ │ │ ├── buttons.less │ │ │ │ ├── jumbotron.less │ │ │ │ ├── navbar.less │ │ │ │ ├── type.less │ │ │ │ ├── variables.less │ │ │ │ └── wells.less │ │ │ │ ├── carbonad.less │ │ │ │ ├── example-rating.less │ │ │ │ ├── feature-list.less │ │ │ │ ├── fontawesome-icon-list.less │ │ │ │ ├── footer.less │ │ │ │ ├── jumbotron-carousel.less │ │ │ │ ├── layout.less │ │ │ │ ├── lazy.less │ │ │ │ ├── responsive │ │ │ │ ├── screen-lg.less │ │ │ │ ├── screen-md.less │ │ │ │ ├── screen-sm.less │ │ │ │ └── screen-xs.less │ │ │ │ ├── social-buttons.less │ │ │ │ ├── stripe-ad.less │ │ │ │ └── textured-bg.less │ │ │ ├── cheatsheet.html │ │ │ ├── community.html │ │ │ ├── design.html │ │ │ ├── examples.html │ │ │ ├── get-started.html │ │ │ ├── glyphicons-test.html │ │ │ ├── icons.html │ │ │ ├── icons.yml │ │ │ ├── index.html │ │ │ ├── license.html │ │ │ ├── test-2.3.2.html │ │ │ ├── test.html │ │ │ └── whats-new.html │ ├── jquery │ │ ├── .bower.json │ │ ├── MIT-LICENSE.txt │ │ ├── bower.json │ │ ├── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ └── src │ │ │ ├── ajax.js │ │ │ ├── ajax │ │ │ ├── jsonp.js │ │ │ ├── load.js │ │ │ ├── parseJSON.js │ │ │ ├── parseXML.js │ │ │ ├── script.js │ │ │ ├── var │ │ │ │ ├── nonce.js │ │ │ │ └── rquery.js │ │ │ └── xhr.js │ │ │ ├── attributes.js │ │ │ ├── attributes │ │ │ ├── attr.js │ │ │ ├── classes.js │ │ │ ├── prop.js │ │ │ ├── support.js │ │ │ └── val.js │ │ │ ├── callbacks.js │ │ │ ├── core.js │ │ │ ├── core │ │ │ ├── access.js │ │ │ ├── init.js │ │ │ ├── parseHTML.js │ │ │ ├── ready.js │ │ │ └── var │ │ │ │ └── rsingleTag.js │ │ │ ├── css.js │ │ │ ├── css │ │ │ ├── addGetHookIf.js │ │ │ ├── curCSS.js │ │ │ ├── defaultDisplay.js │ │ │ ├── hiddenVisibleSelectors.js │ │ │ ├── support.js │ │ │ ├── swap.js │ │ │ └── var │ │ │ │ ├── cssExpand.js │ │ │ │ ├── getStyles.js │ │ │ │ ├── isHidden.js │ │ │ │ ├── rmargin.js │ │ │ │ └── rnumnonpx.js │ │ │ ├── data.js │ │ │ ├── data │ │ │ ├── Data.js │ │ │ ├── accepts.js │ │ │ └── var │ │ │ │ ├── data_priv.js │ │ │ │ └── data_user.js │ │ │ ├── deferred.js │ │ │ ├── deprecated.js │ │ │ ├── dimensions.js │ │ │ ├── effects.js │ │ │ ├── effects │ │ │ ├── Tween.js │ │ │ └── animatedSelector.js │ │ │ ├── event.js │ │ │ ├── event │ │ │ ├── alias.js │ │ │ └── support.js │ │ │ ├── exports │ │ │ ├── amd.js │ │ │ └── global.js │ │ │ ├── intro.js │ │ │ ├── jquery.js │ │ │ ├── manipulation.js │ │ │ ├── manipulation │ │ │ ├── _evalUrl.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ └── rcheckableType.js │ │ │ ├── offset.js │ │ │ ├── outro.js │ │ │ ├── queue.js │ │ │ ├── queue │ │ │ └── delay.js │ │ │ ├── selector-native.js │ │ │ ├── selector-sizzle.js │ │ │ ├── selector.js │ │ │ ├── serialize.js │ │ │ ├── sizzle │ │ │ └── dist │ │ │ │ ├── sizzle.js │ │ │ │ ├── sizzle.min.js │ │ │ │ └── sizzle.min.map │ │ │ ├── traversing.js │ │ │ ├── traversing │ │ │ ├── findFilter.js │ │ │ └── var │ │ │ │ └── rneedsContext.js │ │ │ ├── var │ │ │ ├── arr.js │ │ │ ├── class2type.js │ │ │ ├── concat.js │ │ │ ├── hasOwn.js │ │ │ ├── indexOf.js │ │ │ ├── pnum.js │ │ │ ├── push.js │ │ │ ├── rnotwhite.js │ │ │ ├── slice.js │ │ │ ├── strundefined.js │ │ │ ├── support.js │ │ │ ├── toString.js │ │ │ └── trim.js │ │ │ └── wrap.js │ ├── moment │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── bower.json │ │ ├── lang │ │ │ ├── ar-ma.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── br.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cv.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── hy-am.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lb.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ml.js │ │ │ ├── mr.js │ │ │ ├── ms-my.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-cyr.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── ta.js │ │ │ ├── th.js │ │ │ ├── tl-ph.js │ │ │ ├── tr.js │ │ │ ├── tzm-la.js │ │ │ ├── tzm.js │ │ │ ├── uk.js │ │ │ ├── uz.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ ├── min │ │ │ ├── langs.js │ │ │ ├── langs.min.js │ │ │ ├── moment-with-langs.js │ │ │ ├── moment-with-langs.min.js │ │ │ └── moment.min.js │ │ ├── moment.js │ │ └── readme.md │ ├── spin.js │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── .npmignore │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── jquery.spin.js │ │ └── spin.js │ └── toastr │ │ ├── .bower.json │ │ ├── bower.json │ │ ├── toastr.css │ │ ├── toastr.js │ │ ├── toastr.min.css │ │ ├── toastr.min.js │ │ └── toastr.min.js.map ├── package.json ├── postman.api.tests.json └── src │ ├── client │ ├── app │ │ ├── app.js │ │ ├── avengers │ │ │ ├── avengers.html │ │ │ └── avengers.js │ │ ├── common │ │ │ ├── bootstrap.dialog.js │ │ │ ├── bootstrap │ │ │ │ └── bootstrap.dialog.js │ │ │ ├── common.js │ │ │ ├── exceptionHandler.js │ │ │ ├── logger.js │ │ │ └── spinner.js │ │ ├── config.js │ │ ├── config.route.js │ │ ├── dashboard │ │ │ ├── dashboard.html │ │ │ └── dashboard.js │ │ ├── layout │ │ │ ├── shell.html │ │ │ ├── shell.js │ │ │ ├── sidebar.html │ │ │ ├── sidebar.js │ │ │ ├── topnav.html │ │ │ └── widgetheader.html │ │ ├── login │ │ │ ├── login.html │ │ │ └── login.js │ │ └── services │ │ │ ├── authInterceptor.js │ │ │ ├── datacontext.js │ │ │ └── directives.js │ ├── content │ │ ├── customtheme.css │ │ ├── images │ │ │ ├── AngularJS-small.png │ │ │ ├── avengersicon-xs.png │ │ │ ├── avengersicon.png │ │ │ ├── gg.png │ │ │ └── gruntjs.jpg │ │ └── styles.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ └── index.html │ └── server │ ├── auth.js │ ├── data │ ├── maa.json │ ├── marvelavengersalliance.json │ └── thor.json │ ├── errorHandler.js │ ├── favicon.ico │ ├── jsonfileservice.js │ ├── package.json │ ├── routes.js │ └── server.js ├── quickstart ├── .gitignore ├── package.json └── src │ ├── client │ ├── app │ │ ├── app.module.js │ │ ├── avengers │ │ │ ├── avengers.controller.js │ │ │ ├── avengers.html │ │ │ └── avengers.service.js │ │ ├── layout │ │ │ ├── topnav.controller.js │ │ │ └── topnav.html │ │ └── people │ │ │ ├── people.html │ │ │ ├── people.service.js │ │ │ ├── people1.controller.js │ │ │ └── people2.controller.js │ ├── content │ │ ├── animations.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── styles.css │ ├── index.html │ ├── index0_databinding.html │ ├── index1_ngrepeat.html │ ├── index2_controller_di.html │ ├── index3_controlleras.html │ ├── index3_jquery.html │ ├── index4_service.html │ ├── index5_http.html │ ├── index6_route.html │ ├── peoplelist.js │ └── scripts │ │ ├── angular-animate.js │ │ ├── angular-route.js │ │ ├── angular.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-2.0.3.js │ │ ├── jquery-2.0.3.min.js │ │ └── jquery-2.0.3.min.map │ └── server │ ├── app.js │ └── routes │ └── index.js ├── todo-zumo ├── .gitignore ├── README.md ├── ZUMOPostmanCollection.json ├── app │ ├── app.js │ ├── config.js │ ├── datacontext.js │ ├── entityManagerFactory.js │ ├── model.js │ ├── page.html │ ├── page.js │ └── wip-service.js ├── index.html ├── launchers │ ├── launch-linux.sh │ ├── launch-mac.command │ ├── launch-webapi.lnk │ ├── launch-windows.lnk │ ├── start-iisexpress.ps1 │ └── start-todo-webapi.ps1 ├── logo.ico ├── styles.css ├── todo.WebAPI │ ├── App_Data │ │ └── readme.txt │ ├── App_Start │ │ └── BreezeWebApiConfig.cs │ ├── Controllers │ │ └── TodosController.cs │ ├── Model │ │ ├── TodoDatabaseInitializer.cs │ │ ├── TodoItem.cs │ │ └── TodosContext.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Todo.WebAPI.csproj │ ├── Todo.WebAPI.csproj.DotSettings │ ├── Todo.sln │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ └── packages.config └── vendor │ ├── .gitignore │ ├── breeze.angular.js │ ├── breeze.debug.js │ ├── breeze.intellisense.js │ ├── breeze.labs.dataservice.abstractrest.js │ ├── breeze.labs.dataservice.azuremobileservices.js │ ├── breeze.metadata-helper.js │ ├── breeze.min.js │ └── breeze.saveErrorExtensions.js ├── webstorm.md ├── z-metadata ├── .gitignore ├── z-metadata.sln └── z-metadata │ ├── App_Data │ └── readme.txt │ ├── App_Start │ └── BreezeWebApiConfig.cs │ ├── Content │ ├── reset.css │ ├── toastr.css │ └── todo.css │ ├── Controllers │ └── TodosController.cs │ ├── Models │ ├── TodoDatabaseInitializer.cs │ ├── TodoItem.cs │ └── TodosContext.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Scripts │ ├── _references.js │ ├── angular-mocks.js │ ├── angular.js │ ├── angular.min.js │ ├── angular.min.js.map │ ├── breeze.angular.js │ ├── breeze.debug.js │ ├── breeze.intellisense.js │ ├── breeze.metadata-helper.js │ ├── breeze.min.js │ ├── breeze.savequeuing.js │ ├── jquery-1.8.3.intellisense.js │ ├── jquery-1.8.3.js │ ├── jquery-1.8.3.min.js │ └── toastr.js │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── app │ ├── controller.js │ ├── dataservice.js │ ├── entityManagerFactory.js │ ├── logger.js │ ├── main.js │ └── view.html │ ├── favicon.ico │ ├── index.html │ ├── packages.config │ └── z-metadata.csproj └── zza-node-mongo ├── .gitignore ├── Zza-Node-Mongo.njsproj ├── Zza-Node-Mongo.sln ├── ZzaPostmanCollection.json ├── client ├── app │ ├── app.js │ ├── appStart.js │ ├── customer │ │ ├── customer.html │ │ ├── customer.js │ │ ├── customerDetail.html │ │ └── customerList.html │ ├── directives │ │ └── productImgSrcDirective.js │ ├── menu │ │ ├── menu.drink.html │ │ ├── menu.html │ │ ├── menu.js │ │ ├── menu.pizza.html │ │ └── menu.salad.html │ ├── order │ │ ├── cart.html │ │ ├── cart.js │ │ ├── order.html │ │ ├── orderItem.html │ │ ├── orderItem.js │ │ ├── orderItemOptionMany.html │ │ ├── orderItemOptionOne.html │ │ ├── orderItemOptionTypeVm.js │ │ ├── orderItemOptionVm.js │ │ ├── orderSidebar.html │ │ └── orderSidebar.js │ ├── routeStates.js │ ├── services │ │ ├── config.js │ │ ├── databaseReset.js │ │ ├── dataservice.js │ │ ├── entityManagerFactory.js │ │ ├── logger.js │ │ ├── lookups.js │ │ ├── metadata-old.js │ │ ├── metadata.js │ │ ├── model.js │ │ ├── pricing.js │ │ └── util.js │ └── shell │ │ ├── about.html │ │ ├── about.md │ │ ├── footer.html │ │ ├── header.html │ │ ├── header.js │ │ └── home.html ├── css │ ├── bootstrap-responsive.css │ ├── bootstrap-responsive.min.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── ie10mobile.css │ └── styles.css ├── images │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings.png │ ├── logo.png │ └── products │ │ ├── amadeus.jpg │ │ ├── applejuice.jpg │ │ ├── aquah2o.jpg │ │ ├── asianchicken.jpg │ │ ├── bigcountrysalad.jpg │ │ ├── caesarsalad.jpg │ │ ├── cascadefog.jpg │ │ ├── chefsalad.jpg │ │ ├── chickencaesarsalad.jpg │ │ ├── chickencoolness.jpg │ │ ├── cola.jpg │ │ ├── dietcola.jpg │ │ ├── dr.popper.jpg │ │ ├── drink.jpg │ │ ├── energade.jpg │ │ ├── farmersalad.jpg │ │ ├── gardengallop.jpg │ │ ├── gardensalad.jpg │ │ ├── grecoirish.jpg │ │ ├── greeksalad.jpg │ │ ├── greentea.jpg │ │ ├── holysmokes.jpg │ │ ├── hulapie.jpg │ │ ├── icon_tomato.png │ │ ├── icon_vegetarian.png │ │ ├── italianstallion.jpg │ │ ├── jerusalem.jpg │ │ ├── lemonspruce.jpg │ │ ├── lisbon.jpg │ │ ├── littlevenus.jpg │ │ ├── makeyourown.jpg │ │ ├── mamamia.jpg │ │ ├── nocheese.jpg │ │ ├── orangejuice.jpg │ │ ├── pestolante.jpg │ │ ├── plaincheese.jpg │ │ ├── porkbbq.jpg │ │ ├── rootbeer.jpg │ │ ├── shanghai.jpg │ │ ├── southoftheborder.jpg │ │ ├── spinachsalad.jpg │ │ ├── tajmahal.jpg │ │ ├── thaichickensalad.jpg │ │ ├── tomterrific.jpg │ │ └── unknown.jpg ├── index.html ├── lib │ ├── angular-animate │ │ ├── angular-animate.js │ │ ├── angular-animate.min.js │ │ └── angular-animate.min.js.map │ ├── angular-bootstrap │ │ ├── ui-bootstrap-tpls.js │ │ ├── ui-bootstrap-tpls.min.js │ │ ├── ui-bootstrap.js │ │ └── ui-bootstrap.min.js │ ├── angular-sanitize │ │ ├── angular-sanitize.js │ │ ├── angular-sanitize.min.js │ │ └── angular-sanitize.min.js.map │ ├── angular-ui-router │ │ ├── angular-ui-router.js │ │ └── angular-ui-router.min.js │ ├── angular │ │ ├── angular.js │ │ ├── angular.min.js │ │ └── angular.min.js.map │ ├── breeze │ │ ├── breeze.angular.js │ │ ├── breeze.dataservice.mongo.js │ │ ├── breeze.debug.js │ │ ├── breeze.metadata-helper.js │ │ └── breeze.min.js │ ├── jquery │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map │ └── toastr │ │ ├── toastr.css │ │ ├── toastr.js │ │ ├── toastr.min.css │ │ ├── toastr.min.js │ │ └── toastr.min.js.map ├── restAPI.html └── test │ ├── karma.conf.js │ ├── lib │ ├── angular-mocks.js │ ├── bind-polyfill.js │ ├── jasmine │ │ ├── boot.js │ │ ├── console.js │ │ ├── jasmine-html.js │ │ ├── jasmine.css │ │ └── jasmine.js │ └── ngMidwayTester.js │ ├── specs.async │ ├── api.async.spec.js │ ├── api.breeze.async.spec.js │ ├── intro.angular-dodging.async.spec.js │ ├── intro.ngMidwayTester.async.spec.js │ └── lookups.async.spec.js │ ├── specs │ ├── appstart.spec.js │ ├── customer-controller.spec.js │ ├── intro.spec.js │ ├── lookups.spec.js │ ├── menu-controller.spec.js │ ├── orderItem-controller.spec.js │ ├── orderItemOptionTypeVm.spec.js │ └── orderItemOptionVm.spec.js │ └── support │ ├── appConfigDecorator.js │ ├── emFactory-mock-spec.js │ ├── emFactory-mock.js │ ├── jasmine.custom.css │ ├── lookupsExport.js │ ├── lookupsHttpResponse.js │ └── testFns.js ├── db ├── mongodb.config └── zza-mongo-database.zip ├── gulpfile.js ├── notes.txt ├── package.json ├── readme.md └── server ├── breeze-routes.js ├── database.js ├── errorHandler.js ├── repository.js └── server.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/README.md -------------------------------------------------------------------------------- /assets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/assets/.gitignore -------------------------------------------------------------------------------- /assets/add-node-modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/assets/add-node-modules.png -------------------------------------------------------------------------------- /assets/angularFileTemplateSettings.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/assets/angularFileTemplateSettings.jar -------------------------------------------------------------------------------- /assets/enabled-js-libraries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/assets/enabled-js-libraries.png -------------------------------------------------------------------------------- /assets/npm-global-pkgs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/assets/npm-global-pkgs.png -------------------------------------------------------------------------------- /azure.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/azure.err -------------------------------------------------------------------------------- /cc-bmean/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } -------------------------------------------------------------------------------- /cc-bmean/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/.gitignore -------------------------------------------------------------------------------- /cc-bmean/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/.jscsrc -------------------------------------------------------------------------------- /cc-bmean/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/.jshintrc -------------------------------------------------------------------------------- /cc-bmean/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/bower.json -------------------------------------------------------------------------------- /cc-bmean/grunt/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/grunt/.jshintrc -------------------------------------------------------------------------------- /cc-bmean/grunt/configloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/grunt/configloader.js -------------------------------------------------------------------------------- /cc-bmean/grunt/gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/grunt/gruntfile.js -------------------------------------------------------------------------------- /cc-bmean/grunt/options/jshint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/grunt/options/jshint.js -------------------------------------------------------------------------------- /cc-bmean/grunt/options/ngmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/grunt/options/ngmin.js -------------------------------------------------------------------------------- /cc-bmean/grunt/options/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/grunt/options/watch.js -------------------------------------------------------------------------------- /cc-bmean/grunt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/grunt/package.json -------------------------------------------------------------------------------- /cc-bmean/gulp/commentWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/gulp/commentWrapper.js -------------------------------------------------------------------------------- /cc-bmean/gulp/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/gulp/common.js -------------------------------------------------------------------------------- /cc-bmean/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/gulpfile.js -------------------------------------------------------------------------------- /cc-bmean/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/karma.conf.js -------------------------------------------------------------------------------- /cc-bmean/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/package.json -------------------------------------------------------------------------------- /cc-bmean/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/readme.md -------------------------------------------------------------------------------- /cc-bmean/src/client/app/app.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/app.module.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/attendee/attendees.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/attendee/attendees.html -------------------------------------------------------------------------------- /cc-bmean/src/client/app/attendee/attendees.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/attendee/attendees.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/attendee/attendees.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/attendee/attendees.module.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/attendee/config.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/attendee/config.route.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/blocks/logger/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/blocks/logger/logger.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/blocks/router/routehelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/blocks/router/routehelper.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/core/bootstrap.dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/core/bootstrap.dialog.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/core/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/core/common.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/core/config.breeze.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/core/config.breeze.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/core/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/core/config.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/core/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/core/constants.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/core/core.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/core/core.module.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/dashboard/config.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/dashboard/config.route.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/dashboard/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/dashboard/dashboard.html -------------------------------------------------------------------------------- /cc-bmean/src/client/app/dashboard/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/dashboard/dashboard.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/data/data.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/data/data.module.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/data/datacontext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/data/datacontext.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/data/entityManagerFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/data/entityManagerFactory.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/data/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/data/model.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/data/model.metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/data/model.metadata.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/data/model.validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/data/model.validation.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/layout/layout.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/layout/layout.module.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/layout/shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/layout/shell.html -------------------------------------------------------------------------------- /cc-bmean/src/client/app/layout/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/layout/shell.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/layout/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/layout/sidebar.html -------------------------------------------------------------------------------- /cc-bmean/src/client/app/layout/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/layout/sidebar.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/layout/topnav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/layout/topnav.html -------------------------------------------------------------------------------- /cc-bmean/src/client/app/session/config.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/session/config.route.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/session/session.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/session/session.module.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/session/sessiondetail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/session/sessiondetail.html -------------------------------------------------------------------------------- /cc-bmean/src/client/app/session/sessiondetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/session/sessiondetail.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/session/sessions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/session/sessions.html -------------------------------------------------------------------------------- /cc-bmean/src/client/app/session/sessions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/session/sessions.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/speaker/config.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/speaker/config.route.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/speaker/speaker.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/speaker/speaker.module.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/speaker/speakerdetail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/speaker/speakerdetail.html -------------------------------------------------------------------------------- /cc-bmean/src/client/app/speaker/speakerdetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/speaker/speakerdetail.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/speaker/speakers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/speaker/speakers.html -------------------------------------------------------------------------------- /cc-bmean/src/client/app/speaker/speakers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/speaker/speakers.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/widgets/ccImgPerson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/widgets/ccImgPerson.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/widgets/ccScrollToTop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/widgets/ccScrollToTop.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/widgets/ccSidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/widgets/ccSidebar.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/widgets/ccWidgetClose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/widgets/ccWidgetClose.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/widgets/ccWidgetHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/widgets/ccWidgetHeader.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/widgets/ccWidgetMinimize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/widgets/ccWidgetMinimize.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/widgets/ccWip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/widgets/ccWip.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/widgets/widgetheader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/widgets/widgetheader.html -------------------------------------------------------------------------------- /cc-bmean/src/client/app/widgets/widgets.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/widgets/widgets.module.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/wip/config.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/wip/config.route.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/wip/wip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/wip/wip.html -------------------------------------------------------------------------------- /cc-bmean/src/client/app/wip/wip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/wip/wip.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/wip/wip.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/wip/wip.module.js -------------------------------------------------------------------------------- /cc-bmean/src/client/app/wip/wipwidget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/app/wip/wipwidget.html -------------------------------------------------------------------------------- /cc-bmean/src/client/content/customtheme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/content/customtheme.css -------------------------------------------------------------------------------- /cc-bmean/src/client/content/images/breezelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/content/images/breezelogo.png -------------------------------------------------------------------------------- /cc-bmean/src/client/content/images/busy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/content/images/busy.gif -------------------------------------------------------------------------------- /cc-bmean/src/client/content/images/busyatom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/content/images/busyatom.gif -------------------------------------------------------------------------------- /cc-bmean/src/client/content/images/busyblue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/content/images/busyblue.gif -------------------------------------------------------------------------------- /cc-bmean/src/client/content/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/content/images/icon.png -------------------------------------------------------------------------------- /cc-bmean/src/client/content/images/photos/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/content/images/photos/cat.jpg -------------------------------------------------------------------------------- /cc-bmean/src/client/content/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/content/styles.css -------------------------------------------------------------------------------- /cc-bmean/src/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/index.html -------------------------------------------------------------------------------- /cc-bmean/src/client/test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/test/.jshintrc -------------------------------------------------------------------------------- /cc-bmean/src/client/test/basics/assertions.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/test/basics/assertions.spec.js -------------------------------------------------------------------------------- /cc-bmean/src/client/test/basics/basics.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/test/basics/basics.src.js -------------------------------------------------------------------------------- /cc-bmean/src/client/test/lib/bindPolyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/test/lib/bindPolyfill.js -------------------------------------------------------------------------------- /cc-bmean/src/client/test/lib/mockData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/test/lib/mockData.js -------------------------------------------------------------------------------- /cc-bmean/src/client/test/lib/specHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/test/lib/specHelper.js -------------------------------------------------------------------------------- /cc-bmean/src/client/test/midway/template.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/test/midway/template.spec.js -------------------------------------------------------------------------------- /cc-bmean/src/client/test/specs/ccSidebar.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/test/specs/ccSidebar.spec.js -------------------------------------------------------------------------------- /cc-bmean/src/client/test/specs/injector.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/client/test/specs/injector.spec.js -------------------------------------------------------------------------------- /cc-bmean/src/server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/server/app.js -------------------------------------------------------------------------------- /cc-bmean/src/server/data/dataconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/server/data/dataconfig.js -------------------------------------------------------------------------------- /cc-bmean/src/server/data/mongodb.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/server/data/mongodb.config -------------------------------------------------------------------------------- /cc-bmean/src/server/data/ngCodeCamper.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/server/data/ngCodeCamper.zip -------------------------------------------------------------------------------- /cc-bmean/src/server/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/server/favicon.ico -------------------------------------------------------------------------------- /cc-bmean/src/server/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/server/routes/index.js -------------------------------------------------------------------------------- /cc-bmean/src/server/routes/utils/errorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/cc-bmean/src/server/routes/utils/errorHandler.js -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/deploy.sh -------------------------------------------------------------------------------- /grunt-gulp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/README.md -------------------------------------------------------------------------------- /grunt-gulp/_safe/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/_safe/gulpfile.js -------------------------------------------------------------------------------- /grunt-gulp/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/app/app.js -------------------------------------------------------------------------------- /grunt-gulp/app/avengers/avengers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/app/avengers/avengers.html -------------------------------------------------------------------------------- /grunt-gulp/app/avengers/avengers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/app/avengers/avengers.js -------------------------------------------------------------------------------- /grunt-gulp/app/common/bootstrap.dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/app/common/bootstrap.dialog.js -------------------------------------------------------------------------------- /grunt-gulp/app/common/bootstrap/bootstrap.dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/app/common/bootstrap/bootstrap.dialog.js -------------------------------------------------------------------------------- /grunt-gulp/app/common/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/app/common/common.js -------------------------------------------------------------------------------- /grunt-gulp/app/common/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/app/common/logger.js -------------------------------------------------------------------------------- /grunt-gulp/app/common/spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/app/common/spinner.js -------------------------------------------------------------------------------- /grunt-gulp/app/config.exceptionHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/app/config.exceptionHandler.js -------------------------------------------------------------------------------- /grunt-gulp/app/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/app/config.js -------------------------------------------------------------------------------- /grunt-gulp/app/config.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/app/config.route.js -------------------------------------------------------------------------------- /grunt-gulp/app/dashboard/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/app/dashboard/dashboard.html -------------------------------------------------------------------------------- /grunt-gulp/app/dashboard/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/app/dashboard/dashboard.js -------------------------------------------------------------------------------- /grunt-gulp/app/layout/shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/app/layout/shell.html -------------------------------------------------------------------------------- /grunt-gulp/app/layout/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/app/layout/shell.js -------------------------------------------------------------------------------- /grunt-gulp/app/layout/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/app/layout/sidebar.html -------------------------------------------------------------------------------- /grunt-gulp/app/layout/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/app/layout/sidebar.js -------------------------------------------------------------------------------- /grunt-gulp/app/layout/topnav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/app/layout/topnav.html -------------------------------------------------------------------------------- /grunt-gulp/app/layout/widgetheader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/app/layout/widgetheader.html -------------------------------------------------------------------------------- /grunt-gulp/app/services/datacontext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/app/services/datacontext.js -------------------------------------------------------------------------------- /grunt-gulp/app/services/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/app/services/directives.js -------------------------------------------------------------------------------- /grunt-gulp/build-grunt/configloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/build-grunt/configloader.js -------------------------------------------------------------------------------- /grunt-gulp/build-grunt/gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/build-grunt/gruntfile.js -------------------------------------------------------------------------------- /grunt-gulp/build-grunt/jshintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/build-grunt/jshintrc.json -------------------------------------------------------------------------------- /grunt-gulp/build-grunt/options/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/build-grunt/options/clean.js -------------------------------------------------------------------------------- /grunt-gulp/build-grunt/options/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/build-grunt/options/concat.js -------------------------------------------------------------------------------- /grunt-gulp/build-grunt/options/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/build-grunt/options/copy.js -------------------------------------------------------------------------------- /grunt-gulp/build-grunt/options/jshint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/build-grunt/options/jshint.js -------------------------------------------------------------------------------- /grunt-gulp/build-grunt/options/ngmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/build-grunt/options/ngmin.js -------------------------------------------------------------------------------- /grunt-gulp/build-grunt/options/uglify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/build-grunt/options/uglify.js -------------------------------------------------------------------------------- /grunt-gulp/build-grunt/options/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/build-grunt/options/watch.js -------------------------------------------------------------------------------- /grunt-gulp/build-grunt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/build-grunt/package.json -------------------------------------------------------------------------------- /grunt-gulp/build-grunt/tasks/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/build-grunt/tasks/example.js -------------------------------------------------------------------------------- /grunt-gulp/build-gulp/commentWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/build-gulp/commentWrapper.js -------------------------------------------------------------------------------- /grunt-gulp/build-gulp/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/build-gulp/common.js -------------------------------------------------------------------------------- /grunt-gulp/build-gulp/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/build-gulp/gulpfile.js -------------------------------------------------------------------------------- /grunt-gulp/build-gulp/gulpfile_empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/build-gulp/gulpfile_empty.js -------------------------------------------------------------------------------- /grunt-gulp/build-gulp/jshintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/build-gulp/jshintrc.json -------------------------------------------------------------------------------- /grunt-gulp/build-gulp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/build-gulp/package.json -------------------------------------------------------------------------------- /grunt-gulp/content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/content/bootstrap.css -------------------------------------------------------------------------------- /grunt-gulp/content/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/content/bootstrap.css.map -------------------------------------------------------------------------------- /grunt-gulp/content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/content/bootstrap.min.css -------------------------------------------------------------------------------- /grunt-gulp/content/customtheme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/content/customtheme.css -------------------------------------------------------------------------------- /grunt-gulp/content/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/content/font-awesome.css -------------------------------------------------------------------------------- /grunt-gulp/content/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/content/font-awesome.min.css -------------------------------------------------------------------------------- /grunt-gulp/content/images/AngularJS-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/content/images/AngularJS-small.png -------------------------------------------------------------------------------- /grunt-gulp/content/images/avengersicon-xs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/content/images/avengersicon-xs.png -------------------------------------------------------------------------------- /grunt-gulp/content/images/avengersicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/content/images/avengersicon.png -------------------------------------------------------------------------------- /grunt-gulp/content/images/gg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/content/images/gg.png -------------------------------------------------------------------------------- /grunt-gulp/content/images/gruntjs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/content/images/gruntjs.jpg -------------------------------------------------------------------------------- /grunt-gulp/content/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/content/styles.css -------------------------------------------------------------------------------- /grunt-gulp/content/toastr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/content/toastr.css -------------------------------------------------------------------------------- /grunt-gulp/content/toastr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/content/toastr.min.css -------------------------------------------------------------------------------- /grunt-gulp/data/maa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/data/maa.json -------------------------------------------------------------------------------- /grunt-gulp/data/marvelavengersalliance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/data/marvelavengersalliance.json -------------------------------------------------------------------------------- /grunt-gulp/data/thor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/data/thor.json -------------------------------------------------------------------------------- /grunt-gulp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/favicon.ico -------------------------------------------------------------------------------- /grunt-gulp/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /grunt-gulp/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /grunt-gulp/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /grunt-gulp/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /grunt-gulp/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /grunt-gulp/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /grunt-gulp/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /grunt-gulp/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /grunt-gulp/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /grunt-gulp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/index.html -------------------------------------------------------------------------------- /grunt-gulp/jsonfileservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/jsonfileservice.js -------------------------------------------------------------------------------- /grunt-gulp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/package.json -------------------------------------------------------------------------------- /grunt-gulp/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/routes.js -------------------------------------------------------------------------------- /grunt-gulp/scripts/angular-animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/angular-animate.js -------------------------------------------------------------------------------- /grunt-gulp/scripts/angular-animate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/angular-animate.min.js -------------------------------------------------------------------------------- /grunt-gulp/scripts/angular-animate.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/angular-animate.min.js.map -------------------------------------------------------------------------------- /grunt-gulp/scripts/angular-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/angular-route.js -------------------------------------------------------------------------------- /grunt-gulp/scripts/angular-route.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/angular-route.min.js -------------------------------------------------------------------------------- /grunt-gulp/scripts/angular-route.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/angular-route.min.js.map -------------------------------------------------------------------------------- /grunt-gulp/scripts/angular-sanitize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/angular-sanitize.js -------------------------------------------------------------------------------- /grunt-gulp/scripts/angular-sanitize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/angular-sanitize.min.js -------------------------------------------------------------------------------- /grunt-gulp/scripts/angular-sanitize.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/angular-sanitize.min.js.map -------------------------------------------------------------------------------- /grunt-gulp/scripts/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/angular.js -------------------------------------------------------------------------------- /grunt-gulp/scripts/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/angular.min.js -------------------------------------------------------------------------------- /grunt-gulp/scripts/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/angular.min.js.map -------------------------------------------------------------------------------- /grunt-gulp/scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/bootstrap.js -------------------------------------------------------------------------------- /grunt-gulp/scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/bootstrap.min.js -------------------------------------------------------------------------------- /grunt-gulp/scripts/jquery-2.0.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/jquery-2.0.3.js -------------------------------------------------------------------------------- /grunt-gulp/scripts/jquery-2.0.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/jquery-2.0.3.min.js -------------------------------------------------------------------------------- /grunt-gulp/scripts/jquery-2.0.3.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/jquery-2.0.3.min.map -------------------------------------------------------------------------------- /grunt-gulp/scripts/moment-with-langs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/moment-with-langs.js -------------------------------------------------------------------------------- /grunt-gulp/scripts/moment-with-langs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/moment-with-langs.min.js -------------------------------------------------------------------------------- /grunt-gulp/scripts/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/moment.js -------------------------------------------------------------------------------- /grunt-gulp/scripts/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/moment.min.js -------------------------------------------------------------------------------- /grunt-gulp/scripts/spin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/spin.js -------------------------------------------------------------------------------- /grunt-gulp/scripts/spin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/spin.min.js -------------------------------------------------------------------------------- /grunt-gulp/scripts/toastr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/toastr.js -------------------------------------------------------------------------------- /grunt-gulp/scripts/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/toastr.min.js -------------------------------------------------------------------------------- /grunt-gulp/scripts/toastr.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/toastr.min.js.map -------------------------------------------------------------------------------- /grunt-gulp/scripts/ui-bootstrap-tpls-0.10.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/ui-bootstrap-tpls-0.10.0.js -------------------------------------------------------------------------------- /grunt-gulp/scripts/ui-bootstrap-tpls-0.10.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/scripts/ui-bootstrap-tpls-0.10.0.min.js -------------------------------------------------------------------------------- /grunt-gulp/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/grunt-gulp/server.js -------------------------------------------------------------------------------- /hottowel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/hottowel/README.md -------------------------------------------------------------------------------- /modular/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } -------------------------------------------------------------------------------- /modular/.deployment: -------------------------------------------------------------------------------- 1 | [config] 2 | command = bash ./deploy.sh -------------------------------------------------------------------------------- /modular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/.gitignore -------------------------------------------------------------------------------- /modular/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/.jscsrc -------------------------------------------------------------------------------- /modular/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/.jshintrc -------------------------------------------------------------------------------- /modular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/README.md -------------------------------------------------------------------------------- /modular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/bower.json -------------------------------------------------------------------------------- /modular/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/deploy.sh -------------------------------------------------------------------------------- /modular/gulp.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/gulp.config.json -------------------------------------------------------------------------------- /modular/gulp/commentWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/gulp/commentWrapper.js -------------------------------------------------------------------------------- /modular/gulp/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/gulp/common.js -------------------------------------------------------------------------------- /modular/gulp/copyright.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/gulp/copyright.js -------------------------------------------------------------------------------- /modular/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/gulpfile.js -------------------------------------------------------------------------------- /modular/iisnode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/iisnode.yml -------------------------------------------------------------------------------- /modular/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/karma.conf.js -------------------------------------------------------------------------------- /modular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/package.json -------------------------------------------------------------------------------- /modular/src/client/app/app.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/app.module.js -------------------------------------------------------------------------------- /modular/src/client/app/avengers/avengers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/avengers/avengers.html -------------------------------------------------------------------------------- /modular/src/client/app/avengers/avengers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/avengers/avengers.js -------------------------------------------------------------------------------- /modular/src/client/app/avengers/avengers.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/avengers/avengers.module.js -------------------------------------------------------------------------------- /modular/src/client/app/avengers/config.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/avengers/config.route.js -------------------------------------------------------------------------------- /modular/src/client/app/blocks/exception/exception.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/blocks/exception/exception.js -------------------------------------------------------------------------------- /modular/src/client/app/blocks/logger/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/blocks/logger/logger.js -------------------------------------------------------------------------------- /modular/src/client/app/blocks/router/routehelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/blocks/router/routehelper.js -------------------------------------------------------------------------------- /modular/src/client/app/core/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/core/config.js -------------------------------------------------------------------------------- /modular/src/client/app/core/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/core/constants.js -------------------------------------------------------------------------------- /modular/src/client/app/core/core.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/core/core.module.js -------------------------------------------------------------------------------- /modular/src/client/app/core/dataservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/core/dataservice.js -------------------------------------------------------------------------------- /modular/src/client/app/dashboard/config.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/dashboard/config.route.js -------------------------------------------------------------------------------- /modular/src/client/app/dashboard/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/dashboard/dashboard.html -------------------------------------------------------------------------------- /modular/src/client/app/dashboard/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/dashboard/dashboard.js -------------------------------------------------------------------------------- /modular/src/client/app/dashboard/dashboard.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/dashboard/dashboard.module.js -------------------------------------------------------------------------------- /modular/src/client/app/layout/layout.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/layout/layout.module.js -------------------------------------------------------------------------------- /modular/src/client/app/layout/shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/layout/shell.html -------------------------------------------------------------------------------- /modular/src/client/app/layout/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/layout/shell.js -------------------------------------------------------------------------------- /modular/src/client/app/layout/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/layout/sidebar.html -------------------------------------------------------------------------------- /modular/src/client/app/layout/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/layout/sidebar.js -------------------------------------------------------------------------------- /modular/src/client/app/layout/topnav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/layout/topnav.html -------------------------------------------------------------------------------- /modular/src/client/app/widgets/ccSidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/widgets/ccSidebar.js -------------------------------------------------------------------------------- /modular/src/client/app/widgets/ccSpinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/widgets/ccSpinner.js -------------------------------------------------------------------------------- /modular/src/client/app/widgets/ccWidgetClose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/widgets/ccWidgetClose.js -------------------------------------------------------------------------------- /modular/src/client/app/widgets/ccWidgetHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/widgets/ccWidgetHeader.js -------------------------------------------------------------------------------- /modular/src/client/app/widgets/ccWidgetMinimize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/widgets/ccWidgetMinimize.js -------------------------------------------------------------------------------- /modular/src/client/app/widgets/widgetheader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/widgets/widgetheader.html -------------------------------------------------------------------------------- /modular/src/client/app/widgets/widgets.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/app/widgets/widgets.module.js -------------------------------------------------------------------------------- /modular/src/client/content/customtheme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/content/customtheme.css -------------------------------------------------------------------------------- /modular/src/client/content/images/avengersicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/content/images/avengersicon.png -------------------------------------------------------------------------------- /modular/src/client/content/images/busy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/content/images/busy.gif -------------------------------------------------------------------------------- /modular/src/client/content/images/gg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/content/images/gg.png -------------------------------------------------------------------------------- /modular/src/client/content/images/gruntjs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/content/images/gruntjs.jpg -------------------------------------------------------------------------------- /modular/src/client/content/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/content/styles.css -------------------------------------------------------------------------------- /modular/src/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/index.html -------------------------------------------------------------------------------- /modular/src/client/test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/test/.jshintrc -------------------------------------------------------------------------------- /modular/src/client/test/lib/bindPolyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/test/lib/bindPolyfill.js -------------------------------------------------------------------------------- /modular/src/client/test/lib/mockData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/test/lib/mockData.js -------------------------------------------------------------------------------- /modular/src/client/test/lib/specHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/test/lib/specHelper.js -------------------------------------------------------------------------------- /modular/src/client/test/midway/controller.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/test/midway/controller.spec.js -------------------------------------------------------------------------------- /modular/src/client/test/midway/dataservice.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/test/midway/dataservice.spec.js -------------------------------------------------------------------------------- /modular/src/client/test/midway/template.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/test/midway/template.spec.js -------------------------------------------------------------------------------- /modular/src/client/test/midway/view-requests.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/test/midway/view-requests.spec.js -------------------------------------------------------------------------------- /modular/src/client/test/specs/avengers-route.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/test/specs/avengers-route.spec.js -------------------------------------------------------------------------------- /modular/src/client/test/specs/avengers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/test/specs/avengers.spec.js -------------------------------------------------------------------------------- /modular/src/client/test/specs/ccSidebar.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/test/specs/ccSidebar.spec.js -------------------------------------------------------------------------------- /modular/src/client/test/specs/dashboard.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/test/specs/dashboard.spec.js -------------------------------------------------------------------------------- /modular/src/client/test/specs/dataservice.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/test/specs/dataservice.spec.js -------------------------------------------------------------------------------- /modular/src/client/test/specs/sidebar.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/client/test/specs/sidebar.spec.js -------------------------------------------------------------------------------- /modular/src/server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/server/app.js -------------------------------------------------------------------------------- /modular/src/server/data/maa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/server/data/maa.json -------------------------------------------------------------------------------- /modular/src/server/data/marvelavengersalliance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/server/data/marvelavengersalliance.json -------------------------------------------------------------------------------- /modular/src/server/data/thor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/server/data/thor.json -------------------------------------------------------------------------------- /modular/src/server/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/server/favicon.ico -------------------------------------------------------------------------------- /modular/src/server/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/server/routes/index.js -------------------------------------------------------------------------------- /modular/src/server/routes/utils/errorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/server/routes/utils/errorHandler.js -------------------------------------------------------------------------------- /modular/src/server/routes/utils/jsonfileservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/modular/src/server/routes/utils/jsonfileservice.js -------------------------------------------------------------------------------- /ng-1.3 playground/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/.jscsrc -------------------------------------------------------------------------------- /ng-1.3 playground/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/.jshintrc -------------------------------------------------------------------------------- /ng-1.3 playground/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ng-1.3 playground/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/bower.json -------------------------------------------------------------------------------- /ng-1.3 playground/gulp.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/gulp.config.json -------------------------------------------------------------------------------- /ng-1.3 playground/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/gulpfile.js -------------------------------------------------------------------------------- /ng-1.3 playground/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/karma.conf.js -------------------------------------------------------------------------------- /ng-1.3 playground/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/package.json -------------------------------------------------------------------------------- /ng-1.3 playground/scripts/angular-animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/scripts/angular-animate.js -------------------------------------------------------------------------------- /ng-1.3 playground/scripts/angular-animate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/scripts/angular-animate.min.js -------------------------------------------------------------------------------- /ng-1.3 playground/scripts/angular-animate.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/scripts/angular-animate.min.js.map -------------------------------------------------------------------------------- /ng-1.3 playground/scripts/angular-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/scripts/angular-route.js -------------------------------------------------------------------------------- /ng-1.3 playground/scripts/angular-route.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/scripts/angular-route.min.js -------------------------------------------------------------------------------- /ng-1.3 playground/scripts/angular-route.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/scripts/angular-route.min.js.map -------------------------------------------------------------------------------- /ng-1.3 playground/scripts/angular-sanitize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/scripts/angular-sanitize.js -------------------------------------------------------------------------------- /ng-1.3 playground/scripts/angular-sanitize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/scripts/angular-sanitize.min.js -------------------------------------------------------------------------------- /ng-1.3 playground/scripts/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/scripts/angular.js -------------------------------------------------------------------------------- /ng-1.3 playground/scripts/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/scripts/angular.min.js -------------------------------------------------------------------------------- /ng-1.3 playground/scripts/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/scripts/angular.min.js.map -------------------------------------------------------------------------------- /ng-1.3 playground/scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/scripts/bootstrap.js -------------------------------------------------------------------------------- /ng-1.3 playground/scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/scripts/bootstrap.min.js -------------------------------------------------------------------------------- /ng-1.3 playground/scripts/jquery-2.0.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/scripts/jquery-2.0.3.js -------------------------------------------------------------------------------- /ng-1.3 playground/scripts/jquery-2.0.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/scripts/jquery-2.0.3.min.js -------------------------------------------------------------------------------- /ng-1.3 playground/scripts/jquery-2.0.3.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/scripts/jquery-2.0.3.min.map -------------------------------------------------------------------------------- /ng-1.3 playground/scripts/moment-with-langs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/scripts/moment-with-langs.js -------------------------------------------------------------------------------- /ng-1.3 playground/scripts/moment-with-langs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/scripts/moment-with-langs.min.js -------------------------------------------------------------------------------- /ng-1.3 playground/scripts/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/scripts/moment.js -------------------------------------------------------------------------------- /ng-1.3 playground/scripts/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/scripts/moment.min.js -------------------------------------------------------------------------------- /ng-1.3 playground/scripts/spin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/scripts/spin.js -------------------------------------------------------------------------------- /ng-1.3 playground/scripts/spin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/scripts/spin.min.js -------------------------------------------------------------------------------- /ng-1.3 playground/scripts/toastr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/scripts/toastr.js -------------------------------------------------------------------------------- /ng-1.3 playground/scripts/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/scripts/toastr.min.js -------------------------------------------------------------------------------- /ng-1.3 playground/scripts/toastr.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/scripts/toastr.min.js.map -------------------------------------------------------------------------------- /ng-1.3 playground/src/client/app/app.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/src/client/app/app.module.js -------------------------------------------------------------------------------- /ng-1.3 playground/src/client/app/core/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/src/client/app/core/config.js -------------------------------------------------------------------------------- /ng-1.3 playground/src/client/app/core/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/src/client/app/core/constants.js -------------------------------------------------------------------------------- /ng-1.3 playground/src/client/app/core/core.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/src/client/app/core/core.module.js -------------------------------------------------------------------------------- /ng-1.3 playground/src/client/app/core/dataservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/src/client/app/core/dataservice.js -------------------------------------------------------------------------------- /ng-1.3 playground/src/client/app/layout/shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/src/client/app/layout/shell.html -------------------------------------------------------------------------------- /ng-1.3 playground/src/client/app/layout/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/src/client/app/layout/sidebar.html -------------------------------------------------------------------------------- /ng-1.3 playground/src/client/app/layout/topnav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/src/client/app/layout/topnav.html -------------------------------------------------------------------------------- /ng-1.3 playground/src/client/app/other/q.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/src/client/app/other/q.html -------------------------------------------------------------------------------- /ng-1.3 playground/src/client/content/customtheme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/src/client/content/customtheme.css -------------------------------------------------------------------------------- /ng-1.3 playground/src/client/content/images/busy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/src/client/content/images/busy.gif -------------------------------------------------------------------------------- /ng-1.3 playground/src/client/content/images/gg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/src/client/content/images/gg.png -------------------------------------------------------------------------------- /ng-1.3 playground/src/client/content/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/src/client/content/styles.css -------------------------------------------------------------------------------- /ng-1.3 playground/src/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/src/client/index.html -------------------------------------------------------------------------------- /ng-1.3 playground/src/client/test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/src/client/test/.jshintrc -------------------------------------------------------------------------------- /ng-1.3 playground/src/client/test/lib/mockData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/src/client/test/lib/mockData.js -------------------------------------------------------------------------------- /ng-1.3 playground/src/client/test/lib/specHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/src/client/test/lib/specHelper.js -------------------------------------------------------------------------------- /ng-1.3 playground/src/server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/src/server/app.js -------------------------------------------------------------------------------- /ng-1.3 playground/src/server/data/customers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/src/server/data/customers.json -------------------------------------------------------------------------------- /ng-1.3 playground/src/server/data/maa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/src/server/data/maa.json -------------------------------------------------------------------------------- /ng-1.3 playground/src/server/data/thor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/src/server/data/thor.json -------------------------------------------------------------------------------- /ng-1.3 playground/src/server/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/src/server/favicon.ico -------------------------------------------------------------------------------- /ng-1.3 playground/src/server/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-1.3 playground/src/server/routes/index.js -------------------------------------------------------------------------------- /ng-jwt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/README.md -------------------------------------------------------------------------------- /ng-jwt/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower.json -------------------------------------------------------------------------------- /ng-jwt/bower_components/angular-animate/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/angular-animate/.bower.json -------------------------------------------------------------------------------- /ng-jwt/bower_components/angular-animate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/angular-animate/README.md -------------------------------------------------------------------------------- /ng-jwt/bower_components/angular-animate/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/angular-animate/bower.json -------------------------------------------------------------------------------- /ng-jwt/bower_components/angular-route/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/angular-route/.bower.json -------------------------------------------------------------------------------- /ng-jwt/bower_components/angular-route/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/angular-route/README.md -------------------------------------------------------------------------------- /ng-jwt/bower_components/angular-route/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/angular-route/bower.json -------------------------------------------------------------------------------- /ng-jwt/bower_components/angular-sanitize/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/angular-sanitize/.bower.json -------------------------------------------------------------------------------- /ng-jwt/bower_components/angular-sanitize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/angular-sanitize/README.md -------------------------------------------------------------------------------- /ng-jwt/bower_components/angular-sanitize/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/angular-sanitize/bower.json -------------------------------------------------------------------------------- /ng-jwt/bower_components/angular-ui-bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/angular-ui-bootstrap/LICENSE -------------------------------------------------------------------------------- /ng-jwt/bower_components/angular-ui-bootstrap/template/accordion/accordion.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /ng-jwt/bower_components/angular-ui-bootstrap/template/progressbar/progress.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ng-jwt/bower_components/angular/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/angular/.bower.json -------------------------------------------------------------------------------- /ng-jwt/bower_components/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/angular/README.md -------------------------------------------------------------------------------- /ng-jwt/bower_components/angular/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/angular/angular-csp.css -------------------------------------------------------------------------------- /ng-jwt/bower_components/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/angular/angular.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/angular/angular.min.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /ng-jwt/bower_components/angular/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/angular/angular.min.js.map -------------------------------------------------------------------------------- /ng-jwt/bower_components/angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/angular/bower.json -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/.bower.json -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/Gruntfile.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/LICENSE -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/README.md -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/bower.json -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/js/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/js/affix.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/js/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/js/alert.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/js/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/js/button.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/js/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/js/carousel.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/js/collapse.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/js/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/js/dropdown.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/js/modal.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/js/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/js/popover.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/js/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/js/scrollspy.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/js/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/js/tab.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/js/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/js/tooltip.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/js/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/js/transition.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/less/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/less/alerts.less -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/less/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/less/badges.less -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/less/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/less/buttons.less -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/less/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/less/carousel.less -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/less/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/less/close.less -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/less/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/less/code.less -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/less/forms.less -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/less/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/less/grid.less -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/less/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/less/labels.less -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/less/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/less/media.less -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/less/mixins.less -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/less/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/less/modals.less -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/less/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/less/navbar.less -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/less/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/less/navs.less -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/less/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/less/pager.less -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/less/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/less/panels.less -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/less/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/less/popovers.less -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/less/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/less/print.less -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/less/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/less/tables.less -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/less/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/less/theme.less -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/less/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/less/tooltip.less -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/less/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/less/type.less -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/less/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/less/wells.less -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/bootstrap/package.json -------------------------------------------------------------------------------- /ng-jwt/bower_components/bootstrap/test-infra/requirements.txt: -------------------------------------------------------------------------------- 1 | boto==2.20.0 2 | -------------------------------------------------------------------------------- /ng-jwt/bower_components/font-awesome/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/font-awesome/.bower.json -------------------------------------------------------------------------------- /ng-jwt/bower_components/font-awesome/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/font-awesome/.gitignore -------------------------------------------------------------------------------- /ng-jwt/bower_components/font-awesome/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/font-awesome/CONTRIBUTING.md -------------------------------------------------------------------------------- /ng-jwt/bower_components/font-awesome/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/font-awesome/Gemfile -------------------------------------------------------------------------------- /ng-jwt/bower_components/font-awesome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/font-awesome/README.md -------------------------------------------------------------------------------- /ng-jwt/bower_components/font-awesome/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/font-awesome/_config.yml -------------------------------------------------------------------------------- /ng-jwt/bower_components/font-awesome/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/font-awesome/component.json -------------------------------------------------------------------------------- /ng-jwt/bower_components/font-awesome/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/font-awesome/composer.json -------------------------------------------------------------------------------- /ng-jwt/bower_components/font-awesome/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/font-awesome/package.json -------------------------------------------------------------------------------- /ng-jwt/bower_components/font-awesome/src/CNAME: -------------------------------------------------------------------------------- 1 | fontawesome.io -------------------------------------------------------------------------------- /ng-jwt/bower_components/font-awesome/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/font-awesome/src/Makefile -------------------------------------------------------------------------------- /ng-jwt/bower_components/font-awesome/src/assets/less/site/layout.less: -------------------------------------------------------------------------------- 1 | section { margin-top: 40px; } 2 | -------------------------------------------------------------------------------- /ng-jwt/bower_components/font-awesome/src/design.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ng-jwt/bower_components/font-awesome/src/icons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/font-awesome/src/icons.yml -------------------------------------------------------------------------------- /ng-jwt/bower_components/font-awesome/src/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/font-awesome/src/test.html -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/.bower.json -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/MIT-LICENSE.txt -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/bower.json -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/dist/jquery.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/ajax.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/ajax/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/ajax/jsonp.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/ajax/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/ajax/load.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/ajax/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/ajax/script.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\?/); 3 | }); 4 | -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/ajax/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/ajax/xhr.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/attributes.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/callbacks.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/core.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/core/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/core/access.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/core/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/core/init.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/core/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/core/ready.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/css.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/css/curCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/css/curCSS.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/css/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/css/support.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/css/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/css/swap.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^margin/); 3 | }); 4 | -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/data.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/data/Data.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/data/accepts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/data/accepts.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/deferred.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/deprecated.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/dimensions.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/effects.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/event.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/event/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/event/alias.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/exports/amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/exports/amd.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/intro.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/jquery.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/manipulation.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^(?:checkbox|radio)$/i); 3 | }); 4 | -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/offset.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | })); 2 | -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/queue.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/queue/delay.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define([ "./selector-sizzle" ]); 2 | -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/serialize.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/traversing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/traversing.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return []; 3 | }); 4 | -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // [[Class]] -> type pairs 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/var/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/var/concat.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/var/hasOwn.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/var/indexOf.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/var/pnum.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/var/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/var/push.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\S+/g); 3 | }); 4 | -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/var/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/var/slice.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/var/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/var/support.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/var/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/var/toString.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/var/trim.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return "".trim; 3 | }); 4 | -------------------------------------------------------------------------------- /ng-jwt/bower_components/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/jquery/src/wrap.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/.bower.json -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/LICENSE -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/bower.json -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/ar-ma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/ar-ma.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/ar.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/bg.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/br.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/bs.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/ca.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/cs.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/cv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/cv.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/cy.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/da.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/de.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/el.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/en-au.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/en-ca.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/en-gb.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/eo.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/es.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/et.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/eu.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/fa.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/fi.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/fo.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/fr-ca.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/fr.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/gl.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/he.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/hi.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/hr.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/hu.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/hy-am.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/hy-am.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/id.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/is.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/it.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/ja.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/ka.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/km.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/ko.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/lb.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/lt.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/lv.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/mk.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/ml.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/mr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/mr.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/ms-my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/ms-my.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/nb.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/ne.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/nl.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/nn.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/pl.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/pt-br.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/pt.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/ro.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/ru.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/sk.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/sl.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/sq.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/sr-cyr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/sr-cyr.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/sr.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/sv.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/ta.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/th.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/tl-ph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/tl-ph.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/tr.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/tzm-la.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/tzm-la.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/tzm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/tzm.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/uk.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/uz.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/vi.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/zh-cn.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/lang/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/lang/zh-tw.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/min/langs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/min/langs.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/min/langs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/min/langs.min.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/min/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/min/moment.min.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/moment.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/moment/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/moment/readme.md -------------------------------------------------------------------------------- /ng-jwt/bower_components/spin.js/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/spin.js/.bower.json -------------------------------------------------------------------------------- /ng-jwt/bower_components/spin.js/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/spin.js/.gitignore -------------------------------------------------------------------------------- /ng-jwt/bower_components/spin.js/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/spin.js/.jshintrc -------------------------------------------------------------------------------- /ng-jwt/bower_components/spin.js/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/spin.js/.npmignore -------------------------------------------------------------------------------- /ng-jwt/bower_components/spin.js/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/spin.js/LICENSE.txt -------------------------------------------------------------------------------- /ng-jwt/bower_components/spin.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/spin.js/README.md -------------------------------------------------------------------------------- /ng-jwt/bower_components/spin.js/jquery.spin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/spin.js/jquery.spin.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/spin.js/spin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/spin.js/spin.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/toastr/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/toastr/.bower.json -------------------------------------------------------------------------------- /ng-jwt/bower_components/toastr/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/toastr/bower.json -------------------------------------------------------------------------------- /ng-jwt/bower_components/toastr/toastr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/toastr/toastr.css -------------------------------------------------------------------------------- /ng-jwt/bower_components/toastr/toastr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/toastr/toastr.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/toastr/toastr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/toastr/toastr.min.css -------------------------------------------------------------------------------- /ng-jwt/bower_components/toastr/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/toastr/toastr.min.js -------------------------------------------------------------------------------- /ng-jwt/bower_components/toastr/toastr.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/bower_components/toastr/toastr.min.js.map -------------------------------------------------------------------------------- /ng-jwt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/package.json -------------------------------------------------------------------------------- /ng-jwt/postman.api.tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/postman.api.tests.json -------------------------------------------------------------------------------- /ng-jwt/src/client/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/app/app.js -------------------------------------------------------------------------------- /ng-jwt/src/client/app/avengers/avengers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/app/avengers/avengers.html -------------------------------------------------------------------------------- /ng-jwt/src/client/app/avengers/avengers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/app/avengers/avengers.js -------------------------------------------------------------------------------- /ng-jwt/src/client/app/common/bootstrap.dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/app/common/bootstrap.dialog.js -------------------------------------------------------------------------------- /ng-jwt/src/client/app/common/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/app/common/common.js -------------------------------------------------------------------------------- /ng-jwt/src/client/app/common/exceptionHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/app/common/exceptionHandler.js -------------------------------------------------------------------------------- /ng-jwt/src/client/app/common/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/app/common/logger.js -------------------------------------------------------------------------------- /ng-jwt/src/client/app/common/spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/app/common/spinner.js -------------------------------------------------------------------------------- /ng-jwt/src/client/app/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/app/config.js -------------------------------------------------------------------------------- /ng-jwt/src/client/app/config.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/app/config.route.js -------------------------------------------------------------------------------- /ng-jwt/src/client/app/dashboard/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/app/dashboard/dashboard.html -------------------------------------------------------------------------------- /ng-jwt/src/client/app/dashboard/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/app/dashboard/dashboard.js -------------------------------------------------------------------------------- /ng-jwt/src/client/app/layout/shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/app/layout/shell.html -------------------------------------------------------------------------------- /ng-jwt/src/client/app/layout/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/app/layout/shell.js -------------------------------------------------------------------------------- /ng-jwt/src/client/app/layout/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/app/layout/sidebar.html -------------------------------------------------------------------------------- /ng-jwt/src/client/app/layout/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/app/layout/sidebar.js -------------------------------------------------------------------------------- /ng-jwt/src/client/app/layout/topnav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/app/layout/topnav.html -------------------------------------------------------------------------------- /ng-jwt/src/client/app/layout/widgetheader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/app/layout/widgetheader.html -------------------------------------------------------------------------------- /ng-jwt/src/client/app/login/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/app/login/login.html -------------------------------------------------------------------------------- /ng-jwt/src/client/app/login/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/app/login/login.js -------------------------------------------------------------------------------- /ng-jwt/src/client/app/services/authInterceptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/app/services/authInterceptor.js -------------------------------------------------------------------------------- /ng-jwt/src/client/app/services/datacontext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/app/services/datacontext.js -------------------------------------------------------------------------------- /ng-jwt/src/client/app/services/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/app/services/directives.js -------------------------------------------------------------------------------- /ng-jwt/src/client/content/customtheme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/content/customtheme.css -------------------------------------------------------------------------------- /ng-jwt/src/client/content/images/avengersicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/content/images/avengersicon.png -------------------------------------------------------------------------------- /ng-jwt/src/client/content/images/gg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/content/images/gg.png -------------------------------------------------------------------------------- /ng-jwt/src/client/content/images/gruntjs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/content/images/gruntjs.jpg -------------------------------------------------------------------------------- /ng-jwt/src/client/content/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/content/styles.css -------------------------------------------------------------------------------- /ng-jwt/src/client/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /ng-jwt/src/client/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /ng-jwt/src/client/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /ng-jwt/src/client/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /ng-jwt/src/client/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /ng-jwt/src/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/client/index.html -------------------------------------------------------------------------------- /ng-jwt/src/server/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/server/auth.js -------------------------------------------------------------------------------- /ng-jwt/src/server/data/maa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/server/data/maa.json -------------------------------------------------------------------------------- /ng-jwt/src/server/data/marvelavengersalliance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/server/data/marvelavengersalliance.json -------------------------------------------------------------------------------- /ng-jwt/src/server/data/thor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/server/data/thor.json -------------------------------------------------------------------------------- /ng-jwt/src/server/errorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/server/errorHandler.js -------------------------------------------------------------------------------- /ng-jwt/src/server/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/server/favicon.ico -------------------------------------------------------------------------------- /ng-jwt/src/server/jsonfileservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/server/jsonfileservice.js -------------------------------------------------------------------------------- /ng-jwt/src/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/server/package.json -------------------------------------------------------------------------------- /ng-jwt/src/server/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/server/routes.js -------------------------------------------------------------------------------- /ng-jwt/src/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/ng-jwt/src/server/server.js -------------------------------------------------------------------------------- /quickstart/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/.gitignore -------------------------------------------------------------------------------- /quickstart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/package.json -------------------------------------------------------------------------------- /quickstart/src/client/app/app.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/app/app.module.js -------------------------------------------------------------------------------- /quickstart/src/client/app/avengers/avengers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/app/avengers/avengers.html -------------------------------------------------------------------------------- /quickstart/src/client/app/layout/topnav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/app/layout/topnav.html -------------------------------------------------------------------------------- /quickstart/src/client/app/people/people.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/app/people/people.html -------------------------------------------------------------------------------- /quickstart/src/client/app/people/people.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/app/people/people.service.js -------------------------------------------------------------------------------- /quickstart/src/client/content/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/content/animations.css -------------------------------------------------------------------------------- /quickstart/src/client/content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/content/bootstrap.css -------------------------------------------------------------------------------- /quickstart/src/client/content/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/content/bootstrap.css.map -------------------------------------------------------------------------------- /quickstart/src/client/content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/content/bootstrap.min.css -------------------------------------------------------------------------------- /quickstart/src/client/content/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/content/styles.css -------------------------------------------------------------------------------- /quickstart/src/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/index.html -------------------------------------------------------------------------------- /quickstart/src/client/index0_databinding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/index0_databinding.html -------------------------------------------------------------------------------- /quickstart/src/client/index1_ngrepeat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/index1_ngrepeat.html -------------------------------------------------------------------------------- /quickstart/src/client/index2_controller_di.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/index2_controller_di.html -------------------------------------------------------------------------------- /quickstart/src/client/index3_controlleras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/index3_controlleras.html -------------------------------------------------------------------------------- /quickstart/src/client/index3_jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/index3_jquery.html -------------------------------------------------------------------------------- /quickstart/src/client/index4_service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/index4_service.html -------------------------------------------------------------------------------- /quickstart/src/client/index5_http.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/index5_http.html -------------------------------------------------------------------------------- /quickstart/src/client/index6_route.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/index6_route.html -------------------------------------------------------------------------------- /quickstart/src/client/peoplelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/peoplelist.js -------------------------------------------------------------------------------- /quickstart/src/client/scripts/angular-animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/scripts/angular-animate.js -------------------------------------------------------------------------------- /quickstart/src/client/scripts/angular-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/scripts/angular-route.js -------------------------------------------------------------------------------- /quickstart/src/client/scripts/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/scripts/angular.js -------------------------------------------------------------------------------- /quickstart/src/client/scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/scripts/bootstrap.js -------------------------------------------------------------------------------- /quickstart/src/client/scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/scripts/bootstrap.min.js -------------------------------------------------------------------------------- /quickstart/src/client/scripts/jquery-2.0.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/scripts/jquery-2.0.3.js -------------------------------------------------------------------------------- /quickstart/src/client/scripts/jquery-2.0.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/scripts/jquery-2.0.3.min.js -------------------------------------------------------------------------------- /quickstart/src/client/scripts/jquery-2.0.3.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/client/scripts/jquery-2.0.3.min.map -------------------------------------------------------------------------------- /quickstart/src/server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/server/app.js -------------------------------------------------------------------------------- /quickstart/src/server/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/quickstart/src/server/routes/index.js -------------------------------------------------------------------------------- /todo-zumo/.gitignore: -------------------------------------------------------------------------------- 1 | *.mdf 2 | *.ldf 3 | -------------------------------------------------------------------------------- /todo-zumo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/README.md -------------------------------------------------------------------------------- /todo-zumo/ZUMOPostmanCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/ZUMOPostmanCollection.json -------------------------------------------------------------------------------- /todo-zumo/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/app/app.js -------------------------------------------------------------------------------- /todo-zumo/app/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/app/config.js -------------------------------------------------------------------------------- /todo-zumo/app/datacontext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/app/datacontext.js -------------------------------------------------------------------------------- /todo-zumo/app/entityManagerFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/app/entityManagerFactory.js -------------------------------------------------------------------------------- /todo-zumo/app/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/app/model.js -------------------------------------------------------------------------------- /todo-zumo/app/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/app/page.html -------------------------------------------------------------------------------- /todo-zumo/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/app/page.js -------------------------------------------------------------------------------- /todo-zumo/app/wip-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/app/wip-service.js -------------------------------------------------------------------------------- /todo-zumo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/index.html -------------------------------------------------------------------------------- /todo-zumo/launchers/launch-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/launchers/launch-linux.sh -------------------------------------------------------------------------------- /todo-zumo/launchers/launch-mac.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/launchers/launch-mac.command -------------------------------------------------------------------------------- /todo-zumo/launchers/launch-webapi.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/launchers/launch-webapi.lnk -------------------------------------------------------------------------------- /todo-zumo/launchers/launch-windows.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/launchers/launch-windows.lnk -------------------------------------------------------------------------------- /todo-zumo/launchers/start-iisexpress.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/launchers/start-iisexpress.ps1 -------------------------------------------------------------------------------- /todo-zumo/launchers/start-todo-webapi.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/launchers/start-todo-webapi.ps1 -------------------------------------------------------------------------------- /todo-zumo/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/logo.ico -------------------------------------------------------------------------------- /todo-zumo/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/styles.css -------------------------------------------------------------------------------- /todo-zumo/todo.WebAPI/App_Data/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/todo.WebAPI/App_Data/readme.txt -------------------------------------------------------------------------------- /todo-zumo/todo.WebAPI/Model/TodoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/todo.WebAPI/Model/TodoItem.cs -------------------------------------------------------------------------------- /todo-zumo/todo.WebAPI/Model/TodosContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/todo.WebAPI/Model/TodosContext.cs -------------------------------------------------------------------------------- /todo-zumo/todo.WebAPI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/todo.WebAPI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /todo-zumo/todo.WebAPI/Todo.WebAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/todo.WebAPI/Todo.WebAPI.csproj -------------------------------------------------------------------------------- /todo-zumo/todo.WebAPI/Todo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/todo.WebAPI/Todo.sln -------------------------------------------------------------------------------- /todo-zumo/todo.WebAPI/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/todo.WebAPI/Web.Debug.config -------------------------------------------------------------------------------- /todo-zumo/todo.WebAPI/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/todo.WebAPI/Web.Release.config -------------------------------------------------------------------------------- /todo-zumo/todo.WebAPI/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/todo.WebAPI/Web.config -------------------------------------------------------------------------------- /todo-zumo/todo.WebAPI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/todo.WebAPI/packages.config -------------------------------------------------------------------------------- /todo-zumo/vendor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/vendor/.gitignore -------------------------------------------------------------------------------- /todo-zumo/vendor/breeze.angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/vendor/breeze.angular.js -------------------------------------------------------------------------------- /todo-zumo/vendor/breeze.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/vendor/breeze.debug.js -------------------------------------------------------------------------------- /todo-zumo/vendor/breeze.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/vendor/breeze.intellisense.js -------------------------------------------------------------------------------- /todo-zumo/vendor/breeze.metadata-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/vendor/breeze.metadata-helper.js -------------------------------------------------------------------------------- /todo-zumo/vendor/breeze.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/vendor/breeze.min.js -------------------------------------------------------------------------------- /todo-zumo/vendor/breeze.saveErrorExtensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/todo-zumo/vendor/breeze.saveErrorExtensions.js -------------------------------------------------------------------------------- /webstorm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/webstorm.md -------------------------------------------------------------------------------- /z-metadata/.gitignore: -------------------------------------------------------------------------------- 1 | *.sdf 2 | 3 | -------------------------------------------------------------------------------- /z-metadata/z-metadata.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata.sln -------------------------------------------------------------------------------- /z-metadata/z-metadata/App_Data/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/App_Data/readme.txt -------------------------------------------------------------------------------- /z-metadata/z-metadata/Content/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/Content/reset.css -------------------------------------------------------------------------------- /z-metadata/z-metadata/Content/toastr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/Content/toastr.css -------------------------------------------------------------------------------- /z-metadata/z-metadata/Content/todo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/Content/todo.css -------------------------------------------------------------------------------- /z-metadata/z-metadata/Models/TodoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/Models/TodoItem.cs -------------------------------------------------------------------------------- /z-metadata/z-metadata/Models/TodosContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/Models/TodosContext.cs -------------------------------------------------------------------------------- /z-metadata/z-metadata/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /z-metadata/z-metadata/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/Scripts/_references.js -------------------------------------------------------------------------------- /z-metadata/z-metadata/Scripts/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/Scripts/angular-mocks.js -------------------------------------------------------------------------------- /z-metadata/z-metadata/Scripts/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/Scripts/angular.js -------------------------------------------------------------------------------- /z-metadata/z-metadata/Scripts/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/Scripts/angular.min.js -------------------------------------------------------------------------------- /z-metadata/z-metadata/Scripts/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/Scripts/angular.min.js.map -------------------------------------------------------------------------------- /z-metadata/z-metadata/Scripts/breeze.angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/Scripts/breeze.angular.js -------------------------------------------------------------------------------- /z-metadata/z-metadata/Scripts/breeze.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/Scripts/breeze.debug.js -------------------------------------------------------------------------------- /z-metadata/z-metadata/Scripts/breeze.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/Scripts/breeze.min.js -------------------------------------------------------------------------------- /z-metadata/z-metadata/Scripts/jquery-1.8.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/Scripts/jquery-1.8.3.js -------------------------------------------------------------------------------- /z-metadata/z-metadata/Scripts/jquery-1.8.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/Scripts/jquery-1.8.3.min.js -------------------------------------------------------------------------------- /z-metadata/z-metadata/Scripts/toastr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/Scripts/toastr.js -------------------------------------------------------------------------------- /z-metadata/z-metadata/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/Web.Debug.config -------------------------------------------------------------------------------- /z-metadata/z-metadata/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/Web.Release.config -------------------------------------------------------------------------------- /z-metadata/z-metadata/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/Web.config -------------------------------------------------------------------------------- /z-metadata/z-metadata/app/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/app/controller.js -------------------------------------------------------------------------------- /z-metadata/z-metadata/app/dataservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/app/dataservice.js -------------------------------------------------------------------------------- /z-metadata/z-metadata/app/entityManagerFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/app/entityManagerFactory.js -------------------------------------------------------------------------------- /z-metadata/z-metadata/app/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/app/logger.js -------------------------------------------------------------------------------- /z-metadata/z-metadata/app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/app/main.js -------------------------------------------------------------------------------- /z-metadata/z-metadata/app/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/app/view.html -------------------------------------------------------------------------------- /z-metadata/z-metadata/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/favicon.ico -------------------------------------------------------------------------------- /z-metadata/z-metadata/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/index.html -------------------------------------------------------------------------------- /z-metadata/z-metadata/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/packages.config -------------------------------------------------------------------------------- /z-metadata/z-metadata/z-metadata.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/z-metadata/z-metadata/z-metadata.csproj -------------------------------------------------------------------------------- /zza-node-mongo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/.gitignore -------------------------------------------------------------------------------- /zza-node-mongo/Zza-Node-Mongo.njsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/Zza-Node-Mongo.njsproj -------------------------------------------------------------------------------- /zza-node-mongo/Zza-Node-Mongo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/Zza-Node-Mongo.sln -------------------------------------------------------------------------------- /zza-node-mongo/ZzaPostmanCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/ZzaPostmanCollection.json -------------------------------------------------------------------------------- /zza-node-mongo/client/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/app.js -------------------------------------------------------------------------------- /zza-node-mongo/client/app/appStart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/appStart.js -------------------------------------------------------------------------------- /zza-node-mongo/client/app/customer/customer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/customer/customer.html -------------------------------------------------------------------------------- /zza-node-mongo/client/app/customer/customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/customer/customer.js -------------------------------------------------------------------------------- /zza-node-mongo/client/app/menu/menu.drink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/menu/menu.drink.html -------------------------------------------------------------------------------- /zza-node-mongo/client/app/menu/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/menu/menu.html -------------------------------------------------------------------------------- /zza-node-mongo/client/app/menu/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/menu/menu.js -------------------------------------------------------------------------------- /zza-node-mongo/client/app/menu/menu.pizza.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/menu/menu.pizza.html -------------------------------------------------------------------------------- /zza-node-mongo/client/app/menu/menu.salad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/menu/menu.salad.html -------------------------------------------------------------------------------- /zza-node-mongo/client/app/order/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/order/cart.html -------------------------------------------------------------------------------- /zza-node-mongo/client/app/order/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/order/cart.js -------------------------------------------------------------------------------- /zza-node-mongo/client/app/order/order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/order/order.html -------------------------------------------------------------------------------- /zza-node-mongo/client/app/order/orderItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/order/orderItem.html -------------------------------------------------------------------------------- /zza-node-mongo/client/app/order/orderItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/order/orderItem.js -------------------------------------------------------------------------------- /zza-node-mongo/client/app/order/orderSidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/order/orderSidebar.html -------------------------------------------------------------------------------- /zza-node-mongo/client/app/order/orderSidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/order/orderSidebar.js -------------------------------------------------------------------------------- /zza-node-mongo/client/app/routeStates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/routeStates.js -------------------------------------------------------------------------------- /zza-node-mongo/client/app/services/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/services/config.js -------------------------------------------------------------------------------- /zza-node-mongo/client/app/services/dataservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/services/dataservice.js -------------------------------------------------------------------------------- /zza-node-mongo/client/app/services/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/services/logger.js -------------------------------------------------------------------------------- /zza-node-mongo/client/app/services/lookups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/services/lookups.js -------------------------------------------------------------------------------- /zza-node-mongo/client/app/services/metadata-old.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/services/metadata-old.js -------------------------------------------------------------------------------- /zza-node-mongo/client/app/services/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/services/metadata.js -------------------------------------------------------------------------------- /zza-node-mongo/client/app/services/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/services/model.js -------------------------------------------------------------------------------- /zza-node-mongo/client/app/services/pricing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/services/pricing.js -------------------------------------------------------------------------------- /zza-node-mongo/client/app/services/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/services/util.js -------------------------------------------------------------------------------- /zza-node-mongo/client/app/shell/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/shell/about.html -------------------------------------------------------------------------------- /zza-node-mongo/client/app/shell/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/shell/about.md -------------------------------------------------------------------------------- /zza-node-mongo/client/app/shell/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/shell/footer.html -------------------------------------------------------------------------------- /zza-node-mongo/client/app/shell/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/shell/header.html -------------------------------------------------------------------------------- /zza-node-mongo/client/app/shell/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/shell/header.js -------------------------------------------------------------------------------- /zza-node-mongo/client/app/shell/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/app/shell/home.html -------------------------------------------------------------------------------- /zza-node-mongo/client/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /zza-node-mongo/client/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/css/bootstrap.css -------------------------------------------------------------------------------- /zza-node-mongo/client/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/css/bootstrap.min.css -------------------------------------------------------------------------------- /zza-node-mongo/client/css/ie10mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/css/ie10mobile.css -------------------------------------------------------------------------------- /zza-node-mongo/client/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/css/styles.css -------------------------------------------------------------------------------- /zza-node-mongo/client/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/images/logo.png -------------------------------------------------------------------------------- /zza-node-mongo/client/images/products/amadeus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/images/products/amadeus.jpg -------------------------------------------------------------------------------- /zza-node-mongo/client/images/products/aquah2o.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/images/products/aquah2o.jpg -------------------------------------------------------------------------------- /zza-node-mongo/client/images/products/cola.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/images/products/cola.jpg -------------------------------------------------------------------------------- /zza-node-mongo/client/images/products/dietcola.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/images/products/dietcola.jpg -------------------------------------------------------------------------------- /zza-node-mongo/client/images/products/drink.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/images/products/drink.jpg -------------------------------------------------------------------------------- /zza-node-mongo/client/images/products/energade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/images/products/energade.jpg -------------------------------------------------------------------------------- /zza-node-mongo/client/images/products/greentea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/images/products/greentea.jpg -------------------------------------------------------------------------------- /zza-node-mongo/client/images/products/hulapie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/images/products/hulapie.jpg -------------------------------------------------------------------------------- /zza-node-mongo/client/images/products/lisbon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/images/products/lisbon.jpg -------------------------------------------------------------------------------- /zza-node-mongo/client/images/products/mamamia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/images/products/mamamia.jpg -------------------------------------------------------------------------------- /zza-node-mongo/client/images/products/nocheese.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/images/products/nocheese.jpg -------------------------------------------------------------------------------- /zza-node-mongo/client/images/products/porkbbq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/images/products/porkbbq.jpg -------------------------------------------------------------------------------- /zza-node-mongo/client/images/products/rootbeer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/images/products/rootbeer.jpg -------------------------------------------------------------------------------- /zza-node-mongo/client/images/products/shanghai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/images/products/shanghai.jpg -------------------------------------------------------------------------------- /zza-node-mongo/client/images/products/tajmahal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/images/products/tajmahal.jpg -------------------------------------------------------------------------------- /zza-node-mongo/client/images/products/unknown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/images/products/unknown.jpg -------------------------------------------------------------------------------- /zza-node-mongo/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/index.html -------------------------------------------------------------------------------- /zza-node-mongo/client/lib/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/lib/angular/angular.js -------------------------------------------------------------------------------- /zza-node-mongo/client/lib/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/lib/angular/angular.min.js -------------------------------------------------------------------------------- /zza-node-mongo/client/lib/breeze/breeze.angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/lib/breeze/breeze.angular.js -------------------------------------------------------------------------------- /zza-node-mongo/client/lib/breeze/breeze.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/lib/breeze/breeze.debug.js -------------------------------------------------------------------------------- /zza-node-mongo/client/lib/breeze/breeze.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/lib/breeze/breeze.min.js -------------------------------------------------------------------------------- /zza-node-mongo/client/lib/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/lib/jquery/jquery.js -------------------------------------------------------------------------------- /zza-node-mongo/client/lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/lib/jquery/jquery.min.js -------------------------------------------------------------------------------- /zza-node-mongo/client/lib/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/lib/jquery/jquery.min.map -------------------------------------------------------------------------------- /zza-node-mongo/client/lib/toastr/toastr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/lib/toastr/toastr.css -------------------------------------------------------------------------------- /zza-node-mongo/client/lib/toastr/toastr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/lib/toastr/toastr.js -------------------------------------------------------------------------------- /zza-node-mongo/client/lib/toastr/toastr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/lib/toastr/toastr.min.css -------------------------------------------------------------------------------- /zza-node-mongo/client/lib/toastr/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/lib/toastr/toastr.min.js -------------------------------------------------------------------------------- /zza-node-mongo/client/lib/toastr/toastr.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/lib/toastr/toastr.min.js.map -------------------------------------------------------------------------------- /zza-node-mongo/client/restAPI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/restAPI.html -------------------------------------------------------------------------------- /zza-node-mongo/client/test/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/test/karma.conf.js -------------------------------------------------------------------------------- /zza-node-mongo/client/test/lib/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/test/lib/angular-mocks.js -------------------------------------------------------------------------------- /zza-node-mongo/client/test/lib/bind-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/test/lib/bind-polyfill.js -------------------------------------------------------------------------------- /zza-node-mongo/client/test/lib/jasmine/boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/test/lib/jasmine/boot.js -------------------------------------------------------------------------------- /zza-node-mongo/client/test/lib/jasmine/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/test/lib/jasmine/console.js -------------------------------------------------------------------------------- /zza-node-mongo/client/test/lib/jasmine/jasmine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/test/lib/jasmine/jasmine.css -------------------------------------------------------------------------------- /zza-node-mongo/client/test/lib/jasmine/jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/test/lib/jasmine/jasmine.js -------------------------------------------------------------------------------- /zza-node-mongo/client/test/lib/ngMidwayTester.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/test/lib/ngMidwayTester.js -------------------------------------------------------------------------------- /zza-node-mongo/client/test/specs/appstart.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/test/specs/appstart.spec.js -------------------------------------------------------------------------------- /zza-node-mongo/client/test/specs/intro.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/test/specs/intro.spec.js -------------------------------------------------------------------------------- /zza-node-mongo/client/test/specs/lookups.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/test/specs/lookups.spec.js -------------------------------------------------------------------------------- /zza-node-mongo/client/test/support/testFns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/client/test/support/testFns.js -------------------------------------------------------------------------------- /zza-node-mongo/db/mongodb.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/db/mongodb.config -------------------------------------------------------------------------------- /zza-node-mongo/db/zza-mongo-database.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/db/zza-mongo-database.zip -------------------------------------------------------------------------------- /zza-node-mongo/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/gulpfile.js -------------------------------------------------------------------------------- /zza-node-mongo/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/notes.txt -------------------------------------------------------------------------------- /zza-node-mongo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/package.json -------------------------------------------------------------------------------- /zza-node-mongo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/readme.md -------------------------------------------------------------------------------- /zza-node-mongo/server/breeze-routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/server/breeze-routes.js -------------------------------------------------------------------------------- /zza-node-mongo/server/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/server/database.js -------------------------------------------------------------------------------- /zza-node-mongo/server/errorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/server/errorHandler.js -------------------------------------------------------------------------------- /zza-node-mongo/server/repository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/server/repository.js -------------------------------------------------------------------------------- /zza-node-mongo/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/ng-demos/HEAD/zza-node-mongo/server/server.js --------------------------------------------------------------------------------