├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .mailmap ├── .npmrc ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── dist ├── jquery.requestanimationframe.js ├── jquery.requestanimationframe.min.js └── jquery.requestanimationframe.min.map ├── package.json ├── src ├── .eslintrc.json └── jquery.requestanimationframe.js └── test ├── .eslintrc.json ├── jquery.requestanimationframe.html └── jquery.requestanimationframe_test.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarf/jquery-requestAnimationFrame/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarf/jquery-requestAnimationFrame/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarf/jquery-requestAnimationFrame/HEAD/.mailmap -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarf/jquery-requestAnimationFrame/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarf/jquery-requestAnimationFrame/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarf/jquery-requestAnimationFrame/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarf/jquery-requestAnimationFrame/HEAD/README.md -------------------------------------------------------------------------------- /dist/jquery.requestanimationframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarf/jquery-requestAnimationFrame/HEAD/dist/jquery.requestanimationframe.js -------------------------------------------------------------------------------- /dist/jquery.requestanimationframe.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarf/jquery-requestAnimationFrame/HEAD/dist/jquery.requestanimationframe.min.js -------------------------------------------------------------------------------- /dist/jquery.requestanimationframe.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarf/jquery-requestAnimationFrame/HEAD/dist/jquery.requestanimationframe.min.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarf/jquery-requestAnimationFrame/HEAD/package.json -------------------------------------------------------------------------------- /src/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarf/jquery-requestAnimationFrame/HEAD/src/.eslintrc.json -------------------------------------------------------------------------------- /src/jquery.requestanimationframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarf/jquery-requestAnimationFrame/HEAD/src/jquery.requestanimationframe.js -------------------------------------------------------------------------------- /test/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarf/jquery-requestAnimationFrame/HEAD/test/.eslintrc.json -------------------------------------------------------------------------------- /test/jquery.requestanimationframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarf/jquery-requestAnimationFrame/HEAD/test/jquery.requestanimationframe.html -------------------------------------------------------------------------------- /test/jquery.requestanimationframe_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarf/jquery-requestAnimationFrame/HEAD/test/jquery.requestanimationframe_test.js --------------------------------------------------------------------------------