event-touch.js revision 77f5d24250296732876cd61c7c43b8443e652565
var SCALE = "scale",
ROTATION = "rotation",
IDENTIFIER = "identifier";
if (e.touches) {
this.touches = [];
touchCache = {};
}
}
if (e.targetTouches) {
this.targetTouches = [];
et = e.targetTouches[i];
}
}
if (e.changedTouches) {
this.changedTouches = [];
et = e.changedTouches[i];
}
}
if (SCALE in e) {
}
if (ROTATION in e) {
}
if (IDENTIFIER in e) {
this[IDENTIFIER] = e[IDENTIFIER];
}
};
if (Y.Node.DOM_EVENTS) {
touchstart:1,
touchmove:1,
touchend:1,
touchcancel:1,
gesturestart:1,
});
}