react-scroll-horizontal
react-scroll-horizontal copied to clipboard
Mouse Deltas not Normalized by React
I have encountered a situation where certain mice have vastly different mouse deltas on Firefox as compared with the rest of the browsers. Like, 10x difference.
This shouldn't happen, as in theory React's onWheel() should be normalizing all the deltas across browsers. That is what React advertises it does, but it seems that it is unable to handle certain edge cases.
React's SyntheticWheelEvent.js
Hmmm. I don't think React actually normalizes these values at all.

I may have misread this to say, "React will handle all event normalizations for everything, ever."
I have looked at a few other mouse wheel normalization scripts and they all seem to refer back to jquery.mousewheel.js as the most comprehensive option available.