( animation, props )
| 8649 | } |
| 8650 | |
| 8651 | function createTweens( animation, props ) { |
| 8652 | jQuery.each( props, function( prop, value ) { |
| 8653 | var collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ), |
| 8654 | index = 0, |
| 8655 | length = collection.length; |
| 8656 | for ( ; index < length; index++ ) { |
| 8657 | if ( collection[ index ].call( animation, prop, value ) ) { |
| 8658 | |
| 8659 | // we're done with this property |
| 8660 | return; |
| 8661 | } |
| 8662 | } |
| 8663 | }); |
| 8664 | } |
| 8665 | |
| 8666 | function Animation( elem, properties, options ) { |
| 8667 | var result, |