├── .gitignore ├── Readme.md ├── bower.json ├── karma.conf.js ├── package.json ├── source └── during-scroll.js └── test ├── jquery-during-scroll_test.coffee └── support └── boot.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | coverage 4 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotarantino/jquery-during-scroll/HEAD/Readme.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotarantino/jquery-during-scroll/HEAD/bower.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotarantino/jquery-during-scroll/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotarantino/jquery-during-scroll/HEAD/package.json -------------------------------------------------------------------------------- /source/during-scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotarantino/jquery-during-scroll/HEAD/source/during-scroll.js -------------------------------------------------------------------------------- /test/jquery-during-scroll_test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotarantino/jquery-during-scroll/HEAD/test/jquery-during-scroll_test.coffee -------------------------------------------------------------------------------- /test/support/boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotarantino/jquery-during-scroll/HEAD/test/support/boot.js --------------------------------------------------------------------------------