MCPcopy Create free account
hub / github.com/sql-js/sql.js / createTweens

Function createTweens

documentation/javascript/application.js:9359–9372  ·  view source on GitHub ↗
( animation, props )

Source from the content-addressed store, hash-verified

9357}
9358
9359function 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
9374function Animation( elem, properties, options ) {
9375 var result,

Callers 1

AnimationFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…