MCPcopy
hub / github.com/nbubna/store / createTweens

Function createTweens

libs/jquery/jquery.js:8651–8664  ·  view source on GitHub ↗
( animation, props )

Source from the content-addressed store, hash-verified

8649}
8650
8651function 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
8666function Animation( elem, properties, options ) {
8667 var result,

Callers 1

AnimationFunction · 0.85

Calls 1

eachMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…