Merge pull request #2046 from joaquinelio/patch-1

repeated word 2-3-6 article
This commit is contained in:
Ilya Kantor 2020-08-08 11:44:14 +03:00 committed by GitHub
commit d4fb59b2d8
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: