Lines Matching refs:time
14 * velocity of the flick, along with distance and time information.
60 * @param fn {function} The method the event invokes. It receives an event facade with an e.flick object containing the flick related properties: e.flick.time, e.flick.distance, e.flick.velocity and e.flick.axis, e.flick.start.
149 time : new Date().getTime()
171 start.flick.time = new Date().getTime();
182 time,
218 startTime = start.flick.time;
220 time = endTime - startTime;
234 velocity = (time !== 0) ? distance/time : 0;
240 time:time,