Merge pull request #3120 from kushanksriraj/patch-1

docs: fix typo (missing verb)
This commit is contained in:
Ilya Kantor 2022-08-14 12:28:45 +03:00 committed by GitHub
commit ed1b44eda3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,7 +18,7 @@ The basic Drag'n'Drop algorithm looks like this:
2. Then on `mousemove` move it by changing `left/top` with `position:absolute`.
3. On `mouseup` - perform all actions related to finishing the drag'n'drop.
These are the basics. Later we'll see how to other features, such as highlighting current underlying elements while we drag over them.
These are the basics. Later we'll see how to add other features, such as highlighting current underlying elements while we drag over them.
Here's the implementation of dragging a ball: