diff --git a/src/interaction/InteractionManager.js b/src/interaction/InteractionManager.js index ca2b14d..05f6628 100644 --- a/src/interaction/InteractionManager.js +++ b/src/interaction/InteractionManager.js @@ -105,15 +105,16 @@ this.interactionDOMElement = null; /** - * This property determins if mousemove and touchmove events are fired only when the cursror + * This property determines if mousemove and touchmove events are fired only when the cursror * is over the object. * Setting to true will make things work more in line with how the DOM verison works. * Setting to false can make things easier for things like dragging * It is currently set to false as this is how pixi used to work. This will be set to true in * future versions of pixi. * - * @private - * @member {boolean} + * @member {boolean} moveWhenInside + * @memberof PIXI.interaction.InteractionManager# + * @default false */ this.moveWhenInside = false;