I am using mousewheel event in my site. I have webgl frontend, scrollbars disabled, mousewheel is used for manipulating objects. Works good, if it is not Chrome with Wheel Smooth Scroller extension. This bastard scrolls page not meant to be scrolled, and moreover - blocks my mousewheel event.
I attach event listener like this:
window.addEventListener('mousewheel', mouseWheel);
What should I do? Attaching event to some div instead of window IS NOT AN OPTION