event-touch.js revision 7d1157dbcdfedd79881117578f3790d06a2cd317
var SCALE = "scale",
ROTATION = "rotation";
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 (Y.Node.DOM_EVENTS) {
touchstart:1,
touchmove:1,
touchend:1,
touchcancel:1,
gesturestart:1,
});
}