diff --git a/src/interaction/InteractionManager.js b/src/interaction/InteractionManager.js index 6764d8f..7e2ca80 100644 --- a/src/interaction/InteractionManager.js +++ b/src/interaction/InteractionManager.js @@ -543,10 +543,7 @@ */ InteractionManager.prototype.processMouseMove = function ( displayObject, hit ) { - if(hit) - { - this.dispatchEvent( displayObject, 'mousemove', this.eventData); - } + this.dispatchEvent( displayObject, 'mousemove', this.eventData); this.processMouseOverOut(displayObject, hit); }; @@ -762,10 +759,8 @@ */ InteractionManager.prototype.processTouchMove = function ( displayObject, hit ) { - if (hit) - { - this.dispatchEvent( displayObject, 'touchmove', this.eventData); - } + hit = hit; + this.dispatchEvent( displayObject, 'touchmove', this.eventData); }; /**