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

Function createTween

2.1.1/src/effects.js:110–122  ·  view source on GitHub ↗
( value, prop, animation )

Source from the content-addressed store, hash-verified

108}
109
110function createTween( value, prop, animation ) {
111 var tween,
112 collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ),
113 index = 0,
114 length = collection.length;
115 for ( ; index < length; index++ ) {
116 if ( (tween = collection[ index ].call( animation, prop, value )) ) {
117
118 // We're done with this property
119 return tween;
120 }
121 }
122}
123
124function defaultPrefilter( elem, props, opts ) {
125 /* jshint validthis: true */

Callers 1

defaultPrefilterFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected