We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e93964 commit 3461f1aCopy full SHA for 3461f1a
packages/uui-base/lib/utils/drag.ts
@@ -26,7 +26,7 @@ export const drag = (
26
if ('TouchEvent' in window && event instanceof TouchEvent) {
27
pointerEvent = event.touches[0];
28
} else if (event instanceof MouseEvent) {
29
- // Some browsers seems to return PointerEvent instead of MouseEvent for click event.
+ // Some browsers seem to return PointerEvent instead of MouseEvent for click event.
30
// We can use MouseEvent as PointerEvent inherits from MouseEvent.
31
pointerEvent = event;
32
} else {
0 commit comments