We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e473a3 commit 78b2ef3Copy full SHA for 78b2ef3
jquery.mousewheel.js
@@ -78,6 +78,9 @@
78
if ( orgEvent.wheelDelta ) { delta = orgEvent.wheelDelta; }
79
if ( orgEvent.detail ) { delta = orgEvent.detail * -1; }
80
81
+ // At a minimum, setup the deltaY to be delta
82
+ deltaY = delta;
83
+
84
// New school wheel delta (wheel event)
85
if ( orgEvent.deltaY ) {
86
deltaY = orgEvent.deltaY * -1;
0 commit comments