Skip to content

Commit bc08fd1

Browse files
authored
Merge pull request #2689 from joaquinelio/patch-8
slider not working on movile
2 parents 58f9c8d + 4a7fe13 commit bc08fd1

File tree

1 file changed

+1
-1
lines changed
  • 2-ui/3-event-details/6-pointer-events/slider.view

1 file changed

+1
-1
lines changed

2-ui/3-event-details/6-pointer-events/slider.view/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
function onThumbMove(event) {
3232
let newLeft = event.clientX - shiftX - slider.getBoundingClientRect().left;
3333

34-
// if the pointer is out of slider => adjust left to be within the bounaries
34+
// if the pointer is out of slider => adjust left to be within the boundaries
3535
if (newLeft < 0) {
3636
newLeft = 0;
3737
}

0 commit comments

Comments
 (0)