├── .gitignore ├── LICENSE ├── README.md ├── bower.json ├── index.html ├── mousewheel.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monospaced/angular-mousewheel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monospaced/angular-mousewheel/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monospaced/angular-mousewheel/HEAD/bower.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monospaced/angular-mousewheel/HEAD/index.html -------------------------------------------------------------------------------- /mousewheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monospaced/angular-mousewheel/HEAD/mousewheel.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monospaced/angular-mousewheel/HEAD/package.json --------------------------------------------------------------------------------