about summary refs log tree commit diff
path: root/app/javascript/mastodon/components/column.js
diff options
context:
space:
mode:
authorAkihiko Odaki <akihiko.odaki.4i@stu.hosei.ac.jp>2017-08-31 18:20:54 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-08-31 11:20:54 +0200
commit69957ed10a4b7987fd50351da89944b146952b33 (patch)
tree848bc642830b2cd06579e643fccb367c573c7e9a /app/javascript/mastodon/components/column.js
parentd1a78eba1558004f69ab8933b08ffe0093671546 (diff)
Fix the usages of Detect Passive Events (#4749)
Diffstat (limited to 'app/javascript/mastodon/components/column.js')
-rw-r--r--app/javascript/mastodon/components/column.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/components/column.js b/app/javascript/mastodon/components/column.js
index 05a7c1436..e81236d26 100644
--- a/app/javascript/mastodon/components/column.js
+++ b/app/javascript/mastodon/components/column.js
@@ -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 () {