( value, prop, animation )
| 3725 | } |
| 3726 | |
| 3727 | function 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 | |
| 3741 | function defaultPrefilter( elem, props, opts ) { |
| 3742 | /* jshint validthis: true */ |