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

Function fireWillEvents

core/src/utils/transition/index.ts:210–213  ·  view source on GitHub ↗
(enteringEl: HTMLElement | undefined, leavingEl: HTMLElement | undefined)

Source from the content-addressed store, hash-verified

208};
209
210const fireWillEvents = (enteringEl: HTMLElement | undefined, leavingEl: HTMLElement | undefined) => {
211 lifecycle(leavingEl, LIFECYCLE_WILL_LEAVE);
212 lifecycle(enteringEl, LIFECYCLE_WILL_ENTER);
213};
214
215const fireDidEvents = (enteringEl: HTMLElement | undefined, leavingEl: HTMLElement | undefined) => {
216 lifecycle(enteringEl, LIFECYCLE_DID_ENTER);

Callers 2

animationFunction · 0.85
noAnimationFunction · 0.85

Calls 1

lifecycleFunction · 0.85

Tested by

no test coverage detected