Promo / wheel-indicator

Indicates when user makes swipe gesture on a trackpad or mouse wheel
http://promo.github.io/wheel-indicator/
272 stars 41 forks source link

To add jslint (or jshint) hook for pre-commit #29

Open f0rmat1k opened 9 years ago

englishextra commented 6 years ago

I wish this is gonna change:

self._deltaArray[i] > 0 ? ++repeatDirection : --repeatDirection;

to:

if (self._deltaArray[i] > 0) {
  ++repeatDirection;
} else {
  --repeatDirection;
}