mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
Fix wheelDelta misspelled
This commit is contained in:
@@ -41,7 +41,7 @@ var WheelEventInterface = {
|
||||
// Fallback to `wheelDeltaY` for Webkit.
|
||||
'wheelDeltaY' in event ? event.wheelDeltaY :
|
||||
// Fallback to `wheelDelta` for IE<9.
|
||||
'wheelDelta' in event ? event.wheelData : 0
|
||||
'wheelDelta' in event ? event.wheelDelta : 0
|
||||
);
|
||||
},
|
||||
deltaZ: null,
|
||||
|
||||
Reference in New Issue
Block a user