* Multi-user touch events input * @constructor * @extends Input
()
| 93223 | * @constructor |
| 93224 | * @extends Input |
| 93225 | */ function TouchInput() { |
| 93226 | this.evTarget = TOUCH_TARGET_EVENTS; |
| 93227 | this.targetIds = {}; |
| 93228 | Input.apply(this, arguments); |
| 93229 | } |
| 93230 | inherit(TouchInput, Input, { |
| 93231 | handler: function MTEhandler(ev) { |
| 93232 | var type = TOUCH_INPUT_MAP[ev.type]; |
nothing calls this directly
no outgoing calls
no test coverage detected