├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── dist ├── ReactOnScreen.js └── ReactOnScreen.js.map ├── index.d.ts ├── package.json ├── scripts └── build.sh ├── setupTests.js ├── src ├── TrackVisibility.js ├── __playground__ │ ├── index.css │ ├── index.html │ └── index.js ├── __tests__ │ ├── TrackVisibility.js │ └── __snapshots__ │ │ └── TrackVisibility.js.snap └── index.js ├── webpack.config.dev.js ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkhadra/react-on-screen/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | webpack.config.js 2 | src/__tests__ 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "react-app" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkhadra/react-on-screen/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkhadra/react-on-screen/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkhadra/react-on-screen/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkhadra/react-on-screen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkhadra/react-on-screen/HEAD/README.md -------------------------------------------------------------------------------- /dist/ReactOnScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkhadra/react-on-screen/HEAD/dist/ReactOnScreen.js -------------------------------------------------------------------------------- /dist/ReactOnScreen.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkhadra/react-on-screen/HEAD/dist/ReactOnScreen.js.map -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkhadra/react-on-screen/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkhadra/react-on-screen/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkhadra/react-on-screen/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkhadra/react-on-screen/HEAD/setupTests.js -------------------------------------------------------------------------------- /src/TrackVisibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkhadra/react-on-screen/HEAD/src/TrackVisibility.js -------------------------------------------------------------------------------- /src/__playground__/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkhadra/react-on-screen/HEAD/src/__playground__/index.css -------------------------------------------------------------------------------- /src/__playground__/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkhadra/react-on-screen/HEAD/src/__playground__/index.html -------------------------------------------------------------------------------- /src/__playground__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkhadra/react-on-screen/HEAD/src/__playground__/index.js -------------------------------------------------------------------------------- /src/__tests__/TrackVisibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkhadra/react-on-screen/HEAD/src/__tests__/TrackVisibility.js -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/TrackVisibility.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkhadra/react-on-screen/HEAD/src/__tests__/__snapshots__/TrackVisibility.js.snap -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkhadra/react-on-screen/HEAD/src/index.js -------------------------------------------------------------------------------- /webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkhadra/react-on-screen/HEAD/webpack.config.dev.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkhadra/react-on-screen/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkhadra/react-on-screen/HEAD/yarn.lock --------------------------------------------------------------------------------