0
0
Fork 0

Fix the usages of Detect Passive Events (#4749)

This commit is contained in:
Akihiko Odaki 2017-08-31 18:20:54 +09:00 committed by Eugen Rochko
parent d1a78eba15
commit 69957ed10a
2 changed files with 3 additions and 3 deletions

View file

@ -32,7 +32,7 @@ export default class Column extends React.PureComponent {
}
componentDidMount () {
this.node.addEventListener('wheel', this.handleWheel, detectPassiveEvents ? { passive: true } : false);
this.node.addEventListener('wheel', this.handleWheel, detectPassiveEvents.hasSupport ? { passive: true } : false);
}
componentWillUnmount () {