├── .gitignore ├── LICENSE ├── README.md ├── dist ├── build.js ├── build.js.map ├── index.html └── loader.css ├── package.json └── src ├── app.js ├── index.bundle.js ├── index.html ├── index.js └── loader.css /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimpu/html5-video-chat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimpu/html5-video-chat/HEAD/README.md -------------------------------------------------------------------------------- /dist/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimpu/html5-video-chat/HEAD/dist/build.js -------------------------------------------------------------------------------- /dist/build.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimpu/html5-video-chat/HEAD/dist/build.js.map -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimpu/html5-video-chat/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/loader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimpu/html5-video-chat/HEAD/dist/loader.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimpu/html5-video-chat/HEAD/package.json -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimpu/html5-video-chat/HEAD/src/app.js -------------------------------------------------------------------------------- /src/index.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimpu/html5-video-chat/HEAD/src/index.bundle.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimpu/html5-video-chat/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimpu/html5-video-chat/HEAD/src/index.js -------------------------------------------------------------------------------- /src/loader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimpu/html5-video-chat/HEAD/src/loader.css --------------------------------------------------------------------------------