├── .bowerrc ├── .gitignore ├── README.md ├── app ├── app.js ├── assets │ └── icons │ │ ├── play-icon.hqx │ │ ├── play-icon.icns │ │ └── play-icon.ico ├── index.html ├── public │ ├── css │ │ └── app.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── js │ │ ├── app.js │ │ └── nwk-videochat.directive.js │ └── partials │ │ ├── head.html │ │ └── nwk-videochat.directive.html ├── routes │ └── index.js └── views │ └── index.ejs ├── bower.json ├── gulpFile.js └── package.json /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "app/public/libs" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | app/public/libs 3 | build -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/nwk-videochat/HEAD/README.md -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/nwk-videochat/HEAD/app/app.js -------------------------------------------------------------------------------- /app/assets/icons/play-icon.hqx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/nwk-videochat/HEAD/app/assets/icons/play-icon.hqx -------------------------------------------------------------------------------- /app/assets/icons/play-icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/nwk-videochat/HEAD/app/assets/icons/play-icon.icns -------------------------------------------------------------------------------- /app/assets/icons/play-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/nwk-videochat/HEAD/app/assets/icons/play-icon.ico -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/nwk-videochat/HEAD/app/index.html -------------------------------------------------------------------------------- /app/public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/nwk-videochat/HEAD/app/public/css/app.css -------------------------------------------------------------------------------- /app/public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/nwk-videochat/HEAD/app/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /app/public/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/nwk-videochat/HEAD/app/public/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /app/public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/nwk-videochat/HEAD/app/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /app/public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/nwk-videochat/HEAD/app/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /app/public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/nwk-videochat/HEAD/app/public/js/app.js -------------------------------------------------------------------------------- /app/public/js/nwk-videochat.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/nwk-videochat/HEAD/app/public/js/nwk-videochat.directive.js -------------------------------------------------------------------------------- /app/public/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/nwk-videochat/HEAD/app/public/partials/head.html -------------------------------------------------------------------------------- /app/public/partials/nwk-videochat.directive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/nwk-videochat/HEAD/app/public/partials/nwk-videochat.directive.html -------------------------------------------------------------------------------- /app/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/nwk-videochat/HEAD/app/routes/index.js -------------------------------------------------------------------------------- /app/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/nwk-videochat/HEAD/app/views/index.ejs -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/nwk-videochat/HEAD/bower.json -------------------------------------------------------------------------------- /gulpFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/nwk-videochat/HEAD/gulpFile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/nwk-videochat/HEAD/package.json --------------------------------------------------------------------------------