event-flick-debug.js revision a3a3a27be34572a49bb03390fa1075a8345e7ce0
/**
* Adds support for a "flick" event, which is fired at the end of a touch or mouse based flick gesture, and provides
* velocity of the flick, along with distance and time information.
*
* @module event-gestures
* @submodule event-flick
*/
start: "touchstart",
end: "touchend"
} : {
start: "mousedown",
end: "mouseup"
},
START = "start",
END = "end",
OWNER_DOCUMENT = "ownerDocument",
MIN_VELOCITY = "minVelocity",
MIN_DISTANCE = "minDistance",
_FLICK_START = "_fs",
_FLICK_START_HANDLE = "_fsh",
_FLICK_END_HANDLE = "_feh",
NODE_TYPE = "nodeType";
/**
* Sets up a "flick" event, that is fired whenever the user initiates a flick gesture on the node
* where the listener is attached. The subscriber can specify a minimum distance or velocity for
* which the event is to be fired.
*
* @event flick
* @param type {string} "flick"
* @param fn {function} The method the event invokes.
* of the flick gesture for which the event is to be fired.
*
* @return {EventHandle} the detach handle
*/
this._onStart,
this,
node,
ce);
},
if (startHandle) {
subscriber[_FLICK_START_HANDLE] = null;
}
if (endHandle) {
subscriber[_FLICK_END_HANDLE] = null;
}
},
processArgs: function(args) {
if (!(MIN_VELOCITY in params)) {
}
if (!(MIN_DISTANCE in params)) {
}
Y.log("flick, processArgs : minDistance =" + params.minDistance + ", minVelocity =" + params.minVelocity);
return params;
},
var start = true, // always true for mouse
doc,
origE = e;
if (e.touches) {
e = e.touches[0];
}
if (start) {
e.flick = {
};
subscriber[_FLICK_START] = e;
if (!endHandle) {
}
}
},
endEvent = e,
time,
axis;
if (valid) {
if (e.changedTouches) {
} else {
valid = false;
}
}
if (valid) {
xyDistance = [
];
if (isFinite(velocity) && (absDistance >= params.minDistance) && (velocity >= params.minVelocity)) {
e.type = "flick";
e.flick = {
};
}
subscriber[_FLICK_START] = null;
}
}
},
MIN_VELOCITY : 0,
MIN_DISTANCE : 0
});