* Touch events input * @constructor * @extends Input
()
| 93175 | * @constructor |
| 93176 | * @extends Input |
| 93177 | */ function SingleTouchInput() { |
| 93178 | this.evTarget = SINGLE_TOUCH_TARGET_EVENTS; |
| 93179 | this.evWin = SINGLE_TOUCH_WINDOW_EVENTS; |
| 93180 | this.started = false; |
| 93181 | Input.apply(this, arguments); |
| 93182 | } |
| 93183 | inherit(SingleTouchInput, Input, { |
| 93184 | handler: function TEhandler(ev) { |
| 93185 | var type = SINGLE_TOUCH_INPUT_MAP[ev.type]; |
nothing calls this directly
no outgoing calls
no test coverage detected