├── .editorconfig ├── .github └── workflows │ └── npmpublish.yml ├── .gitignore ├── README.md ├── package.json ├── rollup.config.js └── src └── plugin.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekrastogi/videojs-landscape-fullscreen/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/npmpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekrastogi/videojs-landscape-fullscreen/HEAD/.github/workflows/npmpublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekrastogi/videojs-landscape-fullscreen/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekrastogi/videojs-landscape-fullscreen/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekrastogi/videojs-landscape-fullscreen/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekrastogi/videojs-landscape-fullscreen/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prateekrastogi/videojs-landscape-fullscreen/HEAD/src/plugin.js --------------------------------------------------------------------------------