├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── scripts └── install_on ├── src ├── __tests__ │ └── index_tests.js └── index.js └── test-setup.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomWright/react-fullscreen/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomWright/react-fullscreen/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | build/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomWright/react-fullscreen/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomWright/react-fullscreen/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | scripts/ 3 | .* 4 | test-setup.js 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomWright/react-fullscreen/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomWright/react-fullscreen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomWright/react-fullscreen/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomWright/react-fullscreen/HEAD/package.json -------------------------------------------------------------------------------- /scripts/install_on: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomWright/react-fullscreen/HEAD/scripts/install_on -------------------------------------------------------------------------------- /src/__tests__/index_tests.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomWright/react-fullscreen/HEAD/src/index.js -------------------------------------------------------------------------------- /test-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomWright/react-fullscreen/HEAD/test-setup.js --------------------------------------------------------------------------------