( value, prop, animation )
| 7524 | } |
| 7525 | |
| 7526 | function createTween( value, prop, animation ) { |
| 7527 | var tween, |
| 7528 | collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), |
| 7529 | index = 0, |
| 7530 | length = collection.length; |
| 7531 | for ( ; index < length; index++ ) { |
| 7532 | if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { |
| 7533 | |
| 7534 | // we're done with this property |
| 7535 | return tween; |
| 7536 | } |
| 7537 | } |
| 7538 | } |
| 7539 | |
| 7540 | function defaultPrefilter( elem, props, opts ) { |
| 7541 | /* jshint validthis: true */ |