├── .gitignore ├── .meteor ├── .finished-upgraders ├── .gitignore ├── .id ├── packages ├── platforms ├── release └── versions ├── README.md ├── client ├── index.html ├── main.less └── main.ts ├── imports ├── api │ ├── images │ │ ├── collection.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── methods.ts │ │ ├── publish.ts │ │ └── store.ts │ ├── parties │ │ ├── collection.ts │ │ ├── index.ts │ │ ├── methods.tests.ts │ │ ├── methods.ts │ │ └── publish.ts │ └── users.ts ├── startup │ └── fixtures.ts └── ui │ ├── components │ ├── auth │ │ ├── auth.html │ │ └── auth.ts │ ├── login │ │ ├── login.ts │ │ ├── mobile.html │ │ ├── mobile.ts │ │ ├── web.html │ │ └── web.ts │ ├── navigation │ │ ├── navigation.html │ │ └── navigation.ts │ ├── partiesList │ │ ├── client │ │ │ └── partiesList.tests.ts │ │ ├── mobile.html │ │ ├── partiesList.less │ │ ├── partiesList.ts │ │ └── web.html │ ├── partiesMap │ │ ├── partiesMap.html │ │ ├── partiesMap.less │ │ └── partiesMap.ts │ ├── partiesSort │ │ ├── client │ │ │ └── partiesSort.tests.ts │ │ ├── partiesSort.html │ │ └── partiesSort.ts │ ├── partyAdd │ │ ├── client │ │ │ └── partyAdd.tests.ts │ │ ├── partyAdd.html │ │ ├── partyAdd.less │ │ └── partyAdd.ts │ ├── partyAddButton │ │ ├── partyAddButton.html │ │ ├── partyAddButton.less │ │ ├── partyAddButton.ts │ │ └── partyAddModal.html │ ├── partyCreator │ │ ├── client │ │ │ └── partyCreator.tests.ts │ │ ├── partyCreator.html │ │ └── partyCreator.ts │ ├── partyDetails │ │ ├── client │ │ │ └── partyDetails.tests.ts │ │ ├── partyDetails.html │ │ ├── partyDetails.less │ │ └── partyDetails.ts │ ├── partyImage │ │ ├── partyImage.html │ │ └── partyImage.ts │ ├── partyMap │ │ ├── partyMap.html │ │ ├── partyMap.less │ │ └── partyMap.ts │ ├── partyRemove │ │ ├── client │ │ │ └── partyRemove.tests.ts │ │ ├── partyRemove.html │ │ ├── partyRemove.less │ │ └── partyRemove.ts │ ├── partyRsvp │ │ ├── partyRsvp.html │ │ └── partyRsvp.ts │ ├── partyRsvpsList │ │ ├── partyRsvpsList.html │ │ ├── partyRsvpsList.less │ │ └── partyRsvpsList.ts │ ├── partyUninvited │ │ ├── partyUninvited.html │ │ └── partyUninvited.ts │ ├── partyUpload │ │ ├── partyUpload.html │ │ ├── partyUpload.less │ │ └── partyUpload.ts │ ├── password │ │ ├── password.html │ │ └── password.ts │ ├── register │ │ ├── register.html │ │ └── register.ts │ └── socially │ │ ├── mobile.html │ │ ├── socially.less │ │ ├── socially.ts │ │ └── web.html │ └── filters │ ├── displayImageFilter.ts │ ├── displayNameFilter.ts │ ├── displayNamePipe.ts │ ├── uninvitedFilter.ts │ └── uninvitedPipe.ts ├── manuals ├── templates │ ├── root.md │ ├── step0.md │ ├── step1.md │ ├── step10.md │ ├── step11.md │ ├── step12.md │ ├── step13.md │ ├── step14.md │ ├── step15.md │ ├── step16.md │ ├── step17.md │ ├── step18.md │ ├── step19.md │ ├── step2.md │ ├── step20.md │ ├── step21.md │ ├── step22.md │ ├── step23.md │ ├── step24.md │ ├── step3.md │ ├── step4.md │ ├── step5.md │ ├── step6.md │ ├── step7.md │ ├── step8.md │ └── step9.md └── views │ ├── root.md │ ├── step0.md │ ├── step1.md │ ├── step10.md │ ├── step11.md │ ├── step12.md │ ├── step13.md │ ├── step14.md │ ├── step15.md │ ├── step16.md │ ├── step17.md │ ├── step18.md │ ├── step19.md │ ├── step2.md │ ├── step20.md │ ├── step21.md │ ├── step22.md │ ├── step23.md │ ├── step24.md │ ├── step3.md │ ├── step4.md │ ├── step5.md │ ├── step6.md │ ├── step7.md │ ├── step8.md │ └── step9.md ├── package.json ├── server └── main.ts ├── typings.d.ts └── typings.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | typings/ 3 | .idea 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /.meteor/.finished-upgraders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/.meteor/.finished-upgraders -------------------------------------------------------------------------------- /.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /.meteor/.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/.meteor/.id -------------------------------------------------------------------------------- /.meteor/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/.meteor/packages -------------------------------------------------------------------------------- /.meteor/platforms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/.meteor/platforms -------------------------------------------------------------------------------- /.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@1.4.1.2 2 | -------------------------------------------------------------------------------- /.meteor/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/.meteor/versions -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/README.md -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/client/index.html -------------------------------------------------------------------------------- /client/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/client/main.less -------------------------------------------------------------------------------- /client/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/client/main.ts -------------------------------------------------------------------------------- /imports/api/images/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/api/images/collection.ts -------------------------------------------------------------------------------- /imports/api/images/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/api/images/helpers.ts -------------------------------------------------------------------------------- /imports/api/images/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/api/images/index.ts -------------------------------------------------------------------------------- /imports/api/images/methods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/api/images/methods.ts -------------------------------------------------------------------------------- /imports/api/images/publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/api/images/publish.ts -------------------------------------------------------------------------------- /imports/api/images/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/api/images/store.ts -------------------------------------------------------------------------------- /imports/api/parties/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/api/parties/collection.ts -------------------------------------------------------------------------------- /imports/api/parties/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/api/parties/index.ts -------------------------------------------------------------------------------- /imports/api/parties/methods.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/api/parties/methods.tests.ts -------------------------------------------------------------------------------- /imports/api/parties/methods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/api/parties/methods.ts -------------------------------------------------------------------------------- /imports/api/parties/publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/api/parties/publish.ts -------------------------------------------------------------------------------- /imports/api/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/api/users.ts -------------------------------------------------------------------------------- /imports/startup/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/startup/fixtures.ts -------------------------------------------------------------------------------- /imports/ui/components/auth/auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/auth/auth.html -------------------------------------------------------------------------------- /imports/ui/components/auth/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/auth/auth.ts -------------------------------------------------------------------------------- /imports/ui/components/login/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/login/login.ts -------------------------------------------------------------------------------- /imports/ui/components/login/mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/login/mobile.html -------------------------------------------------------------------------------- /imports/ui/components/login/mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/login/mobile.ts -------------------------------------------------------------------------------- /imports/ui/components/login/web.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/login/web.html -------------------------------------------------------------------------------- /imports/ui/components/login/web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/login/web.ts -------------------------------------------------------------------------------- /imports/ui/components/navigation/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/navigation/navigation.html -------------------------------------------------------------------------------- /imports/ui/components/navigation/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/navigation/navigation.ts -------------------------------------------------------------------------------- /imports/ui/components/partiesList/client/partiesList.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partiesList/client/partiesList.tests.ts -------------------------------------------------------------------------------- /imports/ui/components/partiesList/mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partiesList/mobile.html -------------------------------------------------------------------------------- /imports/ui/components/partiesList/partiesList.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partiesList/partiesList.less -------------------------------------------------------------------------------- /imports/ui/components/partiesList/partiesList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partiesList/partiesList.ts -------------------------------------------------------------------------------- /imports/ui/components/partiesList/web.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partiesList/web.html -------------------------------------------------------------------------------- /imports/ui/components/partiesMap/partiesMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partiesMap/partiesMap.html -------------------------------------------------------------------------------- /imports/ui/components/partiesMap/partiesMap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partiesMap/partiesMap.less -------------------------------------------------------------------------------- /imports/ui/components/partiesMap/partiesMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partiesMap/partiesMap.ts -------------------------------------------------------------------------------- /imports/ui/components/partiesSort/client/partiesSort.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partiesSort/client/partiesSort.tests.ts -------------------------------------------------------------------------------- /imports/ui/components/partiesSort/partiesSort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partiesSort/partiesSort.html -------------------------------------------------------------------------------- /imports/ui/components/partiesSort/partiesSort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partiesSort/partiesSort.ts -------------------------------------------------------------------------------- /imports/ui/components/partyAdd/client/partyAdd.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyAdd/client/partyAdd.tests.ts -------------------------------------------------------------------------------- /imports/ui/components/partyAdd/partyAdd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyAdd/partyAdd.html -------------------------------------------------------------------------------- /imports/ui/components/partyAdd/partyAdd.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyAdd/partyAdd.less -------------------------------------------------------------------------------- /imports/ui/components/partyAdd/partyAdd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyAdd/partyAdd.ts -------------------------------------------------------------------------------- /imports/ui/components/partyAddButton/partyAddButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyAddButton/partyAddButton.html -------------------------------------------------------------------------------- /imports/ui/components/partyAddButton/partyAddButton.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyAddButton/partyAddButton.less -------------------------------------------------------------------------------- /imports/ui/components/partyAddButton/partyAddButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyAddButton/partyAddButton.ts -------------------------------------------------------------------------------- /imports/ui/components/partyAddButton/partyAddModal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyAddButton/partyAddModal.html -------------------------------------------------------------------------------- /imports/ui/components/partyCreator/client/partyCreator.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyCreator/client/partyCreator.tests.ts -------------------------------------------------------------------------------- /imports/ui/components/partyCreator/partyCreator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyCreator/partyCreator.html -------------------------------------------------------------------------------- /imports/ui/components/partyCreator/partyCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyCreator/partyCreator.ts -------------------------------------------------------------------------------- /imports/ui/components/partyDetails/client/partyDetails.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyDetails/client/partyDetails.tests.ts -------------------------------------------------------------------------------- /imports/ui/components/partyDetails/partyDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyDetails/partyDetails.html -------------------------------------------------------------------------------- /imports/ui/components/partyDetails/partyDetails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyDetails/partyDetails.less -------------------------------------------------------------------------------- /imports/ui/components/partyDetails/partyDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyDetails/partyDetails.ts -------------------------------------------------------------------------------- /imports/ui/components/partyImage/partyImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyImage/partyImage.html -------------------------------------------------------------------------------- /imports/ui/components/partyImage/partyImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyImage/partyImage.ts -------------------------------------------------------------------------------- /imports/ui/components/partyMap/partyMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyMap/partyMap.html -------------------------------------------------------------------------------- /imports/ui/components/partyMap/partyMap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyMap/partyMap.less -------------------------------------------------------------------------------- /imports/ui/components/partyMap/partyMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyMap/partyMap.ts -------------------------------------------------------------------------------- /imports/ui/components/partyRemove/client/partyRemove.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyRemove/client/partyRemove.tests.ts -------------------------------------------------------------------------------- /imports/ui/components/partyRemove/partyRemove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyRemove/partyRemove.html -------------------------------------------------------------------------------- /imports/ui/components/partyRemove/partyRemove.less: -------------------------------------------------------------------------------- 1 | party-remove { 2 | float: right; 3 | } 4 | -------------------------------------------------------------------------------- /imports/ui/components/partyRemove/partyRemove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyRemove/partyRemove.ts -------------------------------------------------------------------------------- /imports/ui/components/partyRsvp/partyRsvp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyRsvp/partyRsvp.html -------------------------------------------------------------------------------- /imports/ui/components/partyRsvp/partyRsvp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyRsvp/partyRsvp.ts -------------------------------------------------------------------------------- /imports/ui/components/partyRsvpsList/partyRsvpsList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyRsvpsList/partyRsvpsList.html -------------------------------------------------------------------------------- /imports/ui/components/partyRsvpsList/partyRsvpsList.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyRsvpsList/partyRsvpsList.less -------------------------------------------------------------------------------- /imports/ui/components/partyRsvpsList/partyRsvpsList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyRsvpsList/partyRsvpsList.ts -------------------------------------------------------------------------------- /imports/ui/components/partyUninvited/partyUninvited.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyUninvited/partyUninvited.html -------------------------------------------------------------------------------- /imports/ui/components/partyUninvited/partyUninvited.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyUninvited/partyUninvited.ts -------------------------------------------------------------------------------- /imports/ui/components/partyUpload/partyUpload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyUpload/partyUpload.html -------------------------------------------------------------------------------- /imports/ui/components/partyUpload/partyUpload.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyUpload/partyUpload.less -------------------------------------------------------------------------------- /imports/ui/components/partyUpload/partyUpload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/partyUpload/partyUpload.ts -------------------------------------------------------------------------------- /imports/ui/components/password/password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/password/password.html -------------------------------------------------------------------------------- /imports/ui/components/password/password.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/password/password.ts -------------------------------------------------------------------------------- /imports/ui/components/register/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/register/register.html -------------------------------------------------------------------------------- /imports/ui/components/register/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/register/register.ts -------------------------------------------------------------------------------- /imports/ui/components/socially/mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/socially/mobile.html -------------------------------------------------------------------------------- /imports/ui/components/socially/socially.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/socially/socially.less -------------------------------------------------------------------------------- /imports/ui/components/socially/socially.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/socially/socially.ts -------------------------------------------------------------------------------- /imports/ui/components/socially/web.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/components/socially/web.html -------------------------------------------------------------------------------- /imports/ui/filters/displayImageFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/filters/displayImageFilter.ts -------------------------------------------------------------------------------- /imports/ui/filters/displayNameFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/filters/displayNameFilter.ts -------------------------------------------------------------------------------- /imports/ui/filters/displayNamePipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/filters/displayNamePipe.ts -------------------------------------------------------------------------------- /imports/ui/filters/uninvitedFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/filters/uninvitedFilter.ts -------------------------------------------------------------------------------- /imports/ui/filters/uninvitedPipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/imports/ui/filters/uninvitedPipe.ts -------------------------------------------------------------------------------- /manuals/templates/root.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/templates/root.md -------------------------------------------------------------------------------- /manuals/templates/step0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/templates/step0.md -------------------------------------------------------------------------------- /manuals/templates/step1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/templates/step1.md -------------------------------------------------------------------------------- /manuals/templates/step10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/templates/step10.md -------------------------------------------------------------------------------- /manuals/templates/step11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/templates/step11.md -------------------------------------------------------------------------------- /manuals/templates/step12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/templates/step12.md -------------------------------------------------------------------------------- /manuals/templates/step13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/templates/step13.md -------------------------------------------------------------------------------- /manuals/templates/step14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/templates/step14.md -------------------------------------------------------------------------------- /manuals/templates/step15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/templates/step15.md -------------------------------------------------------------------------------- /manuals/templates/step16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/templates/step16.md -------------------------------------------------------------------------------- /manuals/templates/step17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/templates/step17.md -------------------------------------------------------------------------------- /manuals/templates/step18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/templates/step18.md -------------------------------------------------------------------------------- /manuals/templates/step19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/templates/step19.md -------------------------------------------------------------------------------- /manuals/templates/step2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/templates/step2.md -------------------------------------------------------------------------------- /manuals/templates/step20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/templates/step20.md -------------------------------------------------------------------------------- /manuals/templates/step21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/templates/step21.md -------------------------------------------------------------------------------- /manuals/templates/step22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/templates/step22.md -------------------------------------------------------------------------------- /manuals/templates/step23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/templates/step23.md -------------------------------------------------------------------------------- /manuals/templates/step24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/templates/step24.md -------------------------------------------------------------------------------- /manuals/templates/step3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/templates/step3.md -------------------------------------------------------------------------------- /manuals/templates/step4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/templates/step4.md -------------------------------------------------------------------------------- /manuals/templates/step5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/templates/step5.md -------------------------------------------------------------------------------- /manuals/templates/step6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/templates/step6.md -------------------------------------------------------------------------------- /manuals/templates/step7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/templates/step7.md -------------------------------------------------------------------------------- /manuals/templates/step8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/templates/step8.md -------------------------------------------------------------------------------- /manuals/templates/step9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/templates/step9.md -------------------------------------------------------------------------------- /manuals/views/root.md: -------------------------------------------------------------------------------- 1 | /Users/dotansimha/Dev/meteor-angular-socially/README.md -------------------------------------------------------------------------------- /manuals/views/step0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/views/step0.md -------------------------------------------------------------------------------- /manuals/views/step1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/views/step1.md -------------------------------------------------------------------------------- /manuals/views/step10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/views/step10.md -------------------------------------------------------------------------------- /manuals/views/step11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/views/step11.md -------------------------------------------------------------------------------- /manuals/views/step12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/views/step12.md -------------------------------------------------------------------------------- /manuals/views/step13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/views/step13.md -------------------------------------------------------------------------------- /manuals/views/step14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/views/step14.md -------------------------------------------------------------------------------- /manuals/views/step15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/views/step15.md -------------------------------------------------------------------------------- /manuals/views/step16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/views/step16.md -------------------------------------------------------------------------------- /manuals/views/step17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/views/step17.md -------------------------------------------------------------------------------- /manuals/views/step18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/views/step18.md -------------------------------------------------------------------------------- /manuals/views/step19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/views/step19.md -------------------------------------------------------------------------------- /manuals/views/step2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/views/step2.md -------------------------------------------------------------------------------- /manuals/views/step20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/views/step20.md -------------------------------------------------------------------------------- /manuals/views/step21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/views/step21.md -------------------------------------------------------------------------------- /manuals/views/step22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/views/step22.md -------------------------------------------------------------------------------- /manuals/views/step23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/views/step23.md -------------------------------------------------------------------------------- /manuals/views/step24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/views/step24.md -------------------------------------------------------------------------------- /manuals/views/step3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/views/step3.md -------------------------------------------------------------------------------- /manuals/views/step4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/views/step4.md -------------------------------------------------------------------------------- /manuals/views/step5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/views/step5.md -------------------------------------------------------------------------------- /manuals/views/step6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/views/step6.md -------------------------------------------------------------------------------- /manuals/views/step7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/views/step7.md -------------------------------------------------------------------------------- /manuals/views/step8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/views/step8.md -------------------------------------------------------------------------------- /manuals/views/step9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/manuals/views/step9.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/package.json -------------------------------------------------------------------------------- /server/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/server/main.ts -------------------------------------------------------------------------------- /typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/typings.d.ts -------------------------------------------------------------------------------- /typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Urigo/meteor-angular-socially/HEAD/typings.json --------------------------------------------------------------------------------