├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── prettier.config.js ├── rollup.config.js ├── scroll-anchoring.js ├── scroll-anchoring.js.flow └── test ├── colors-frame.html ├── colors.html ├── colors.js ├── comments.html └── comments.js /.eslintignore: -------------------------------------------------------------------------------- 1 | /dist/* 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh/scroll-anchoring/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh/scroll-anchoring/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh/scroll-anchoring/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh/scroll-anchoring/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh/scroll-anchoring/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('eslint-plugin-github/prettier.config') 2 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh/scroll-anchoring/HEAD/rollup.config.js -------------------------------------------------------------------------------- /scroll-anchoring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh/scroll-anchoring/HEAD/scroll-anchoring.js -------------------------------------------------------------------------------- /scroll-anchoring.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh/scroll-anchoring/HEAD/scroll-anchoring.js.flow -------------------------------------------------------------------------------- /test/colors-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh/scroll-anchoring/HEAD/test/colors-frame.html -------------------------------------------------------------------------------- /test/colors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh/scroll-anchoring/HEAD/test/colors.html -------------------------------------------------------------------------------- /test/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh/scroll-anchoring/HEAD/test/colors.js -------------------------------------------------------------------------------- /test/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh/scroll-anchoring/HEAD/test/comments.html -------------------------------------------------------------------------------- /test/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh/scroll-anchoring/HEAD/test/comments.js --------------------------------------------------------------------------------