( value, prop, animation )
| 101 | } |
| 102 | |
| 103 | function createTween( value, prop, animation ) { |
| 104 | var tween, |
| 105 | collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ), |
| 106 | index = 0, |
| 107 | length = collection.length; |
| 108 | for ( ; index < length; index++ ) { |
| 109 | if ( (tween = collection[ index ].call( animation, prop, value )) ) { |
| 110 | |
| 111 | // We're done with this property |
| 112 | return tween; |
| 113 | } |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | function defaultPrefilter( elem, props, opts ) { |
| 118 | /* jshint validthis: true */ |