( value, prop, animation )
| 6491 | } |
| 6492 | |
| 6493 | function createTween( value, prop, animation ) { |
| 6494 | var tween, |
| 6495 | collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), |
| 6496 | index = 0, |
| 6497 | length = collection.length; |
| 6498 | for ( ; index < length; index++ ) { |
| 6499 | if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { |
| 6500 | |
| 6501 | // We're done with this property |
| 6502 | return tween; |
| 6503 | } |
| 6504 | } |
| 6505 | } |
| 6506 | |
| 6507 | function defaultPrefilter( elem, props, opts ) { |
| 6508 | /* jshint validthis: true */ |