├── .github └── workflows │ └── metrics.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── README.md └── web ├── css └── app.css ├── index.html └── js ├── app.js └── sampleconfig.js /.github/workflows/metrics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-web/HEAD/.github/workflows/metrics.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | web/js/config.js 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-web/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-web/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-web/HEAD/README.md -------------------------------------------------------------------------------- /web/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-web/HEAD/web/css/app.css -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-web/HEAD/web/index.html -------------------------------------------------------------------------------- /web/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-web/HEAD/web/js/app.js -------------------------------------------------------------------------------- /web/js/sampleconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/learning-opentok-web/HEAD/web/js/sampleconfig.js --------------------------------------------------------------------------------