event-move-debug.js revision 20c6c0edba6bfc7690ccf55aa36512dc98acd4be
// TODO: Better way to sniff 'n' switch touch support?
start: "touchstart",
move: "touchmove",
end: "touchend"
} : {
start: "mousedown",
move: "mousemove",
end: "mouseup"
},
START = "start",
MOVE = "move",
END = "end",
MOVE_START_HANDLE = "_msh",
MOVE_HANDLE = "_mh",
MOVE_END_HANDLE = "_meh",
MOVE_START = "_ms",
_MOVE = "_m",
MIN_TIME = "minTime",
MIN_DISTANCE = "minDistance",
OWNER_DOCUMENT = "ownerDocument",
NODE_TYPE = "nodeType",
define('movestart', {
this._onStart,
null,
node,
ce));
},
if (startHandle) {
}
},
processArgs : function(args) {
}
if (!(MIN_DISTANCE in params)) {
}
return params;
},
e.preventDefault();
var start = true, // always true for mouse
if (e.touches) {
e = e.touches[0];
}
if (start) {
// TODO: Pass through e instead?
payload = {
_e : e
};
}
},
MIN_TIME : 0,
MIN_DISTANCE : 3
});
define('move', {
null,
node,
ce);
},
if (moveHandle) {
moveHandle.detach();
}
},
if (move) {
if (e.touches) {
e = e.touches[0];
}
if (move) {
e.preventDefault();
payload = {
_e : e
};
}
}
}
});
define('moveend', {
null,
node,
ce);
},
if (endHandle) {
}
},
if (moveEnd) {
if (e.changedTouches) {
e = e.changedTouches[0];
} else {
moveEnd = false;
}
}
if (moveEnd) {
e.preventDefault();
payload = {
_e : e
};
}
}
}
});