( animation, props )
| 9357 | } |
| 9358 | |
| 9359 | function createTweens( animation, props ) { |
| 9360 | jQuery.each( props, function( prop, value ) { |
| 9361 | var collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ), |
| 9362 | index = 0, |
| 9363 | length = collection.length; |
| 9364 | for ( ; index < length; index++ ) { |
| 9365 | if ( collection[ index ].call( animation, prop, value ) ) { |
| 9366 | |
| 9367 | // we're done with this property |
| 9368 | return; |
| 9369 | } |
| 9370 | } |
| 9371 | }); |
| 9372 | } |
| 9373 | |
| 9374 | function Animation( elem, properties, options ) { |
| 9375 | var result, |
no outgoing calls
no test coverage detected
searching dependent graphs…