* Pointer events input * @constructor * @extends Input
()
| 52216 | |
| 52217 | |
| 52218 | function PointerEventInput() { |
| 52219 | this.evEl = POINTER_ELEMENT_EVENTS; |
| 52220 | this.evWin = POINTER_WINDOW_EVENTS; |
| 52221 | Input.apply(this, arguments); |
| 52222 | this.store = this.manager.session.pointerEvents = []; |
| 52223 | } |
| 52224 | |
| 52225 | inherit(PointerEventInput, Input, { |
| 52226 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected