├── .githooks └── pre-commit │ └── banner ├── .gitignore ├── .travis.yml ├── README.md ├── bower.json ├── demo └── index.html ├── index.d.ts ├── lib └── wheel-indicator.js ├── package.json └── test ├── algorithm.js ├── methods.js ├── options.js └── wheelDelta-event-object.js /.githooks/pre-commit/banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Promo/wheel-indicator/HEAD/.githooks/pre-commit/banner -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Promo/wheel-indicator/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Promo/wheel-indicator/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Promo/wheel-indicator/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Promo/wheel-indicator/HEAD/bower.json -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Promo/wheel-indicator/HEAD/demo/index.html -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Promo/wheel-indicator/HEAD/index.d.ts -------------------------------------------------------------------------------- /lib/wheel-indicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Promo/wheel-indicator/HEAD/lib/wheel-indicator.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Promo/wheel-indicator/HEAD/package.json -------------------------------------------------------------------------------- /test/algorithm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Promo/wheel-indicator/HEAD/test/algorithm.js -------------------------------------------------------------------------------- /test/methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Promo/wheel-indicator/HEAD/test/methods.js -------------------------------------------------------------------------------- /test/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Promo/wheel-indicator/HEAD/test/options.js -------------------------------------------------------------------------------- /test/wheelDelta-event-object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Promo/wheel-indicator/HEAD/test/wheelDelta-event-object.js --------------------------------------------------------------------------------