* Pointer events input * @constructor * @extends Input
()
| 93121 | * @constructor |
| 93122 | * @extends Input |
| 93123 | */ function PointerEventInput() { |
| 93124 | this.evEl = POINTER_ELEMENT_EVENTS; |
| 93125 | this.evWin = POINTER_WINDOW_EVENTS; |
| 93126 | Input.apply(this, arguments); |
| 93127 | this.store = this.manager.session.pointerEvents = []; |
| 93128 | } |
| 93129 | inherit(PointerEventInput, Input, { |
| 93130 | /** |
| 93131 | * handle mouse events |
nothing calls this directly
no outgoing calls
no test coverage detected