MCPcopy Index your code
hub / github.com/JsAaron/jQuery / createTween

Function createTween

2.0.3/Animation.js:71–83  ·  view source on GitHub ↗
(value, prop, animation)

Source from the content-addressed store, hash-verified

69}
70
71function createTween(value, prop, animation) {
72 var tween,
73 collection = (tweeners[prop] || []).concat(tweeners["*"]),
74 index = 0,
75 length = collection.length;
76 for (; index < length; index++) {
77 if ((tween = collection[index].call(animation, prop, value))) {
78
79 // we're done with this property
80 return tween;
81 }
82 }
83}
84
85function Animation(elem, properties, options) {
86 var result,

Callers 1

defaultPrefilterFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected