Y
Hacker News
new
|
ask
|
show
|
jobs
by
PascLeRasc
3987 days ago
And it disabled the swipe to go back gesture on Mac. I wish there was some way to disable scroll takeovers.
1 comments
data-cat
3987 days ago
Open up your browser's debug tools and throw this in to the console `document.addEventListener('mousewheel', function (event) { event.stopPropagation(); });`
link