( value, prop, animation )
| 7536 | } |
| 7537 | |
| 7538 | function createTween( value, prop, animation ) { |
| 7539 | var tween, |
| 7540 | collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), |
| 7541 | index = 0, |
| 7542 | length = collection.length; |
| 7543 | for ( ; index < length; index++ ) { |
| 7544 | if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { |
| 7545 | |
| 7546 | // we're done with this property |
| 7547 | return tween; |
| 7548 | } |
| 7549 | } |
| 7550 | } |
| 7551 | |
| 7552 | function defaultPrefilter( elem, props, opts ) { |
| 7553 | /* jshint validthis: true */ |