From 6b7fcbdc07bcec6ad05e35280e30dec55483a45d Mon Sep 17 00:00:00 2001 From: Mark Salsbery <> Date: Fri, 5 Mar 2021 18:06:26 -0800 Subject: [PATCH] MouseTracker isEmulated documentation update --- src/mousetracker.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/mousetracker.js b/src/mousetracker.js index 269477e5..93e23743 100644 --- a/src/mousetracker.js +++ b/src/mousetracker.js @@ -1214,9 +1214,10 @@ * @property {String} pointerType * "mouse", "touch", "pen", etc. * @property {Boolean} isEmulated - * True if this is an emulated event. If true, originalEvent is the event that caused - * the emulated event or null if no DOM event applies. Emulated events - * can occur on eventType "wheel". + * True if this is an emulated event. If true, originalEvent is either the event that caused + * the emulated event, a synthetic event object created with values from the actual DOM event, + * or null if no DOM event applies. Emulated events can occur on eventType "wheel" on legacy mouse-scroll + * event emitting user agents. * @property {Boolean} isStopable * True if propagation of the event (e.g. bubbling) can be stopped with stopPropagation/stopImmediatePropagation. * @property {Boolean} isCancelable