MCPcopy Create free account
hub / github.com/microsoft/SandDance / SingleTouchInput

Function SingleTouchInput

docs/app/js/sanddance-app.js:93177–93182  ·  view source on GitHub ↗

* Touch events input * @constructor * @extends Input

()

Source from the content-addressed store, hash-verified

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];

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected