MCPcopy Create free account
hub / github.com/idank/explainshell / createTweens

Function createTweens

explainshell/web/static/js/jquery.js:8691–8704  ·  view source on GitHub ↗
( animation, props )

Source from the content-addressed store, hash-verified

8689}
8690
8691function createTweens( animation, props ) {
8692 jQuery.each( props, function( prop, value ) {
8693 var collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ),
8694 index = 0,
8695 length = collection.length;
8696 for ( ; index < length; index++ ) {
8697 if ( collection[ index ].call( animation, prop, value ) ) {
8698
8699 // we're done with this property
8700 return;
8701 }
8702 }
8703 });
8704}
8705
8706function Animation( elem, properties, options ) {
8707 var result,

Callers 1

AnimationFunction · 0.85

Calls 1

callMethod · 0.45

Tested by

no test coverage detected