MouseTracker isEmulated documentation update

This commit is contained in:
Mark Salsbery 2021-03-05 18:06:26 -08:00
parent 5674cf47ad
commit 6b7fcbdc07

View File

@ -1214,9 +1214,10 @@
* @property {String} pointerType * @property {String} pointerType
* "mouse", "touch", "pen", etc. * "mouse", "touch", "pen", etc.
* @property {Boolean} isEmulated * @property {Boolean} isEmulated
* True if this is an emulated event. If true, originalEvent is the event that caused * True if this is an emulated event. If true, originalEvent is either the event that caused
* the emulated event or null if no DOM event applies. Emulated events * the emulated event, a synthetic event object created with values from the actual DOM event,
* can occur on eventType "wheel". * 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 * @property {Boolean} isStopable
* True if propagation of the event (e.g. bubbling) can be stopped with stopPropagation/stopImmediatePropagation. * True if propagation of the event (e.g. bubbling) can be stopped with stopPropagation/stopImmediatePropagation.
* @property {Boolean} isCancelable * @property {Boolean} isCancelable