├── .gitignore ├── .travis.yml ├── Gruntfile.js ├── README.md ├── bower.json ├── dist ├── jquery.overscroll.js ├── jquery.overscroll.map └── jquery.overscroll.min.js ├── mit.license ├── overscroll.jquery.json ├── package.json └── test ├── dragdrop.js ├── drift.js ├── lib └── jquery.min.js ├── modules └── drift-move.js └── resources ├── simple.html └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | .tern-port 4 | .sass-cache 5 | node_modules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoff/overscroll/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoff/overscroll/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoff/overscroll/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoff/overscroll/HEAD/bower.json -------------------------------------------------------------------------------- /dist/jquery.overscroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoff/overscroll/HEAD/dist/jquery.overscroll.js -------------------------------------------------------------------------------- /dist/jquery.overscroll.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoff/overscroll/HEAD/dist/jquery.overscroll.map -------------------------------------------------------------------------------- /dist/jquery.overscroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoff/overscroll/HEAD/dist/jquery.overscroll.min.js -------------------------------------------------------------------------------- /mit.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoff/overscroll/HEAD/mit.license -------------------------------------------------------------------------------- /overscroll.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoff/overscroll/HEAD/overscroll.jquery.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoff/overscroll/HEAD/package.json -------------------------------------------------------------------------------- /test/dragdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoff/overscroll/HEAD/test/dragdrop.js -------------------------------------------------------------------------------- /test/drift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoff/overscroll/HEAD/test/drift.js -------------------------------------------------------------------------------- /test/lib/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoff/overscroll/HEAD/test/lib/jquery.min.js -------------------------------------------------------------------------------- /test/modules/drift-move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoff/overscroll/HEAD/test/modules/drift-move.js -------------------------------------------------------------------------------- /test/resources/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoff/overscroll/HEAD/test/resources/simple.html -------------------------------------------------------------------------------- /test/resources/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoff/overscroll/HEAD/test/resources/style.css --------------------------------------------------------------------------------