DEV Community

Discussion on: Pinch me, I'm zooming: gestures in the DOM

Collapse
 
hamidb80 profile image
Hamid Bluri

hey, thanks for great article,

when want to prevent the default behavior of wheel event, chrome says:

index.js:71 [Intervention] Unable to preventDefault inside passive event listener due to target being treated as passive. See https://www.chromestatus.com/features/6662647093133312
Enter fullscreen mode Exit fullscreen mode
Collapse
 
danburzo profile image
Dan Burzo

Hi, thanks for the note. To avoid the warning, you can either attach the wheel event on a container other than document, or use the { passive: false } flag in addEventListener(). An updated implementation is presented in the final version of the article.