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.
2 parents fe628c5 + 48e1ab8 commit 9ce977aCopy full SHA for 9ce977a
2 files changed
2-ui/3-event-details/6-pointer-events/slider.view/index.html
@@ -31,7 +31,7 @@
31
function onThumbMove(event) {
32
let newLeft = event.clientX - shiftX - slider.getBoundingClientRect().left;
33
34
- // if the pointer is out of slider => adjust left to be within the bounaries
+ // if the pointer is out of slider => adjust left to be within the boundaries
35
if (newLeft < 0) {
36
newLeft = 0;
37
}
2-ui/3-event-details/6-pointer-events/slider.view/style.css
@@ -8,6 +8,7 @@
8
9
10
.thumb {
11
+ touch-action: none;
12
width: 10px;
13
height: 25px;
14
border-radius: 3px;
0 commit comments