repeated word

This commit is contained in:
joaquinelio 2020-08-08 04:24:02 -03:00 committed by GitHub
parent 7907cd667c
commit 7b0d4773ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -84,7 +84,7 @@ Please note: there `pointerId` is assigned not to the whole device, but for each
The events associated with the first finger always have `isPrimary=true`.
We can track multiple touching fingers using their `pointerId`. When the user moves move and then detouches a finger, we get `pointermove` and `pointerup` events with the same `pointerId` as we had in `pointerdown`.
We can track multiple touching fingers using their `pointerId`. When the user moves and then detouches a finger, we get `pointermove` and `pointerup` events with the same `pointerId` as we had in `pointerdown`.
```online
Here's the demo that logs `pointerdown` and `pointerup` events: