├── .gitignore ├── .meteor ├── .finished-upgraders ├── .gitignore ├── .id ├── packages ├── platforms ├── release └── versions ├── README.md ├── client ├── index.html ├── scripts │ ├── auth.ng.js │ ├── controllers │ │ ├── chat-detail.controller.ng.js │ │ ├── chats.controller.ng.js │ │ ├── confirmation.controller.ng.js │ │ ├── login.controller.ng.js │ │ ├── new-chat.controller.ng.js │ │ ├── profile.controller.ng.js │ │ └── settings.controller.ng.js │ ├── directives │ │ └── input.directive.ng.js │ ├── filters │ │ ├── calendar.filters.ng.js │ │ ├── chat-name.filter.ng.js │ │ └── chat-picture.filter.ng.js │ ├── lib │ │ └── app.ng.js │ └── routes.ng.js ├── styles │ ├── chat-detail.scss │ ├── chats.scss │ ├── login.scss │ └── profile.scss └── templates │ ├── chat-detail.ng.html │ ├── chats.ng.html │ ├── confirmation.ng.html │ ├── login.ng.html │ ├── new-chat.ng.html │ ├── profile.ng.html │ ├── settings.ng.html │ └── tabs.ng.html ├── lib ├── collections.js └── methods.js ├── public ├── chat-background.jpg ├── message-mine.png ├── message-other.png └── user-default.svg └── server ├── bootstrap.js ├── publications.js └── sms.js /.gitignore: -------------------------------------------------------------------------------- 1 | settings.json 2 | -------------------------------------------------------------------------------- /.meteor/.finished-upgraders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/.meteor/.finished-upgraders -------------------------------------------------------------------------------- /.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /.meteor/.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/.meteor/.id -------------------------------------------------------------------------------- /.meteor/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/.meteor/packages -------------------------------------------------------------------------------- /.meteor/platforms: -------------------------------------------------------------------------------- 1 | server 2 | browser 3 | -------------------------------------------------------------------------------- /.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@1.2.0.1 2 | -------------------------------------------------------------------------------- /.meteor/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/.meteor/versions -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/README.md -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/index.html -------------------------------------------------------------------------------- /client/scripts/auth.ng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/scripts/auth.ng.js -------------------------------------------------------------------------------- /client/scripts/controllers/chat-detail.controller.ng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/scripts/controllers/chat-detail.controller.ng.js -------------------------------------------------------------------------------- /client/scripts/controllers/chats.controller.ng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/scripts/controllers/chats.controller.ng.js -------------------------------------------------------------------------------- /client/scripts/controllers/confirmation.controller.ng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/scripts/controllers/confirmation.controller.ng.js -------------------------------------------------------------------------------- /client/scripts/controllers/login.controller.ng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/scripts/controllers/login.controller.ng.js -------------------------------------------------------------------------------- /client/scripts/controllers/new-chat.controller.ng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/scripts/controllers/new-chat.controller.ng.js -------------------------------------------------------------------------------- /client/scripts/controllers/profile.controller.ng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/scripts/controllers/profile.controller.ng.js -------------------------------------------------------------------------------- /client/scripts/controllers/settings.controller.ng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/scripts/controllers/settings.controller.ng.js -------------------------------------------------------------------------------- /client/scripts/directives/input.directive.ng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/scripts/directives/input.directive.ng.js -------------------------------------------------------------------------------- /client/scripts/filters/calendar.filters.ng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/scripts/filters/calendar.filters.ng.js -------------------------------------------------------------------------------- /client/scripts/filters/chat-name.filter.ng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/scripts/filters/chat-name.filter.ng.js -------------------------------------------------------------------------------- /client/scripts/filters/chat-picture.filter.ng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/scripts/filters/chat-picture.filter.ng.js -------------------------------------------------------------------------------- /client/scripts/lib/app.ng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/scripts/lib/app.ng.js -------------------------------------------------------------------------------- /client/scripts/routes.ng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/scripts/routes.ng.js -------------------------------------------------------------------------------- /client/styles/chat-detail.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/styles/chat-detail.scss -------------------------------------------------------------------------------- /client/styles/chats.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/styles/chats.scss -------------------------------------------------------------------------------- /client/styles/login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/styles/login.scss -------------------------------------------------------------------------------- /client/styles/profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/styles/profile.scss -------------------------------------------------------------------------------- /client/templates/chat-detail.ng.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/templates/chat-detail.ng.html -------------------------------------------------------------------------------- /client/templates/chats.ng.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/templates/chats.ng.html -------------------------------------------------------------------------------- /client/templates/confirmation.ng.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/templates/confirmation.ng.html -------------------------------------------------------------------------------- /client/templates/login.ng.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/templates/login.ng.html -------------------------------------------------------------------------------- /client/templates/new-chat.ng.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/templates/new-chat.ng.html -------------------------------------------------------------------------------- /client/templates/profile.ng.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/templates/profile.ng.html -------------------------------------------------------------------------------- /client/templates/settings.ng.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/templates/settings.ng.html -------------------------------------------------------------------------------- /client/templates/tabs.ng.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/client/templates/tabs.ng.html -------------------------------------------------------------------------------- /lib/collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/lib/collections.js -------------------------------------------------------------------------------- /lib/methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/lib/methods.js -------------------------------------------------------------------------------- /public/chat-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/public/chat-background.jpg -------------------------------------------------------------------------------- /public/message-mine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/public/message-mine.png -------------------------------------------------------------------------------- /public/message-other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/public/message-other.png -------------------------------------------------------------------------------- /public/user-default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/public/user-default.svg -------------------------------------------------------------------------------- /server/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/server/bootstrap.js -------------------------------------------------------------------------------- /server/publications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/server/publications.js -------------------------------------------------------------------------------- /server/sms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanwe/meteor-whatsapp/HEAD/server/sms.js --------------------------------------------------------------------------------