Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 831 Bytes

readme.md

File metadata and controls

13 lines (8 loc) · 831 Bytes

has-passive-events unstable Build Status

Check if event listener options are available on the current device. Try it out.

npm install has-passive-events

const hasPassive = require('has-passive-events')

hasPassive ? element.addEventListener('wheel', handler, {passive: true}) : element.addEventListener('wheel', handler)

If you find edge case, please address issues.