Skip to content

Commit 4a7fe13

Browse files
authored
Update index.html
1 parent 1808fe3 commit 4a7fe13

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)