├── .eslintrc ├── .gitignore ├── README.md ├── intersection-observer-test.html ├── intersection-observer-test.js ├── intersection-observer.js └── package.json /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/intersection-observer/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/intersection-observer/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/intersection-observer/HEAD/README.md -------------------------------------------------------------------------------- /intersection-observer-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/intersection-observer/HEAD/intersection-observer-test.html -------------------------------------------------------------------------------- /intersection-observer-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/intersection-observer/HEAD/intersection-observer-test.js -------------------------------------------------------------------------------- /intersection-observer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/intersection-observer/HEAD/intersection-observer.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/intersection-observer/HEAD/package.json --------------------------------------------------------------------------------