MCPcopy Index your code
hub / github.com/ionic-team/ionic-framework / update

Function update

core/src/utils/animation/animation.ts:690–702  ·  view source on GitHub ↗
(deep = false, toggleAnimationName = true, step?: number)

Source from the content-addressed store, hash-verified

688 };
689
690 const update = (deep = false, toggleAnimationName = true, step?: number) => {
691 if (deep) {
692 childAnimations.forEach((animation) => {
693 animation.update(deep, toggleAnimationName, step);
694 });
695 }
696
697 if (supportsWebAnimations) {
698 updateWebAnimation(step);
699 }
700
701 return ani;
702 };
703
704 const progressStart = (forceLinearEasing = false, step?: number) => {
705 childAnimations.forEach((animation) => {

Callers 8

directionFunction · 0.70
fillFunction · 0.70
delayFunction · 0.70
easingFunction · 0.70
durationFunction · 0.70
iterationsFunction · 0.70
progressStartFunction · 0.70
progressEndFunction · 0.70

Calls 2

updateWebAnimationFunction · 0.85
updateMethod · 0.65

Tested by

no test coverage detected