We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 009ec6f commit 089f808Copy full SHA for 089f808
src/lib/directives/scrollable.js
@@ -38,6 +38,7 @@ export default (node, { y: yi = 0, step = scrollStep, maxSteps = Infinity }) =>
38
node.addEventListener('wheel', wheelListener);
39
node.addEventListener('touchstart', touchstartListener);
40
node.addEventListener('touchmove', touchmoveListener);
41
+ node.style.touchAction = 'none';
42
43
return {
44
destroy() {
0 commit comments