Skip to content
This repository was archived by the owner on Jan 4, 2021. It is now read-only.

Commit 608c0a2

Browse files
committed
[FIX] Remove processGestures in pointer events example
1 parent 7e0305b commit 608c0a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/v4/pointer_events.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
<body touch-action="none">
4444
<div>
4545
<div id="editor"></div>
46-
<textarea id="pointerEventsObject">{ "processGestures": true, "events": [{
46+
<textarea id="pointerEventsObject">{ "events": [{
4747
"pointerType": "PEN",
4848
"pointerId": 1,
4949
"x": [128, 125, 122, 119, 118, 117, 116, 117, 119, 123, 127, 135, 139, 141, 144, 144, 143, 142, 141, 142],
@@ -67,7 +67,7 @@
6767

6868
pointerEventsElement.addEventListener('click', function () {
6969
var pointerEventsObject = JSON.parse(pointerEventsObjectElement.value);
70-
console.log('Pointer events beeing processed', pointerEventsObject);
70+
console.log('Pointer events being processed', pointerEventsObject);
7171
editorElement.editor.pointerEvents(pointerEventsObject);
7272
});
7373

0 commit comments

Comments
 (0)