MCPcopy Create free account
hub / github.com/JsAaron/jQuery / createTween

Function createTween

2.1.1/test/other.js:3727–3739  ·  view source on GitHub ↗
( value, prop, animation )

Source from the content-addressed store, hash-verified

3725}
3726
3727function createTween( value, prop, animation ) {
3728 var tween,
3729 collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ),
3730 index = 0,
3731 length = collection.length;
3732 for ( ; index < length; index++ ) {
3733 if ( (tween = collection[ index ].call( animation, prop, value )) ) {
3734
3735 // we're done with this property
3736 return tween;
3737 }
3738 }
3739}
3740
3741function defaultPrefilter( elem, props, opts ) {
3742 /* jshint validthis: true */

Callers 1

defaultPrefilterFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected