We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a10e446 commit b9f155aCopy full SHA for b9f155a
src/lib/components/SplitPane.svelte
@@ -118,11 +118,17 @@
118
window.addEventListener('touchend', ontouchend, false);
119
};
120
121
- node.addEventListener('touchstart', touchdown, false);
+ node.addEventListener('touchstart', touchdown, {
122
+ capture: true,
123
+ passive: false
124
+ });
125
126
return {
127
destroy() {
- node.removeEventListener('touchstart', touchdown, false);
128
+ node.removeEventListener('touchstart', touchdown, {
129
130
131
132
}
133
134
0 commit comments