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