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