Skip to content

Commit

Permalink
hide animation log
Browse files Browse the repository at this point in the history
  • Loading branch information
chinonso098 committed Oct 23, 2023
1 parent 5c8889a commit 260ad54
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/app/user-apps/title/title.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,23 +41,23 @@ export class TitleComponent implements BaseComponent{

onAnimationEvent(event: AnimationEvent) {

// openClose is trigger name in this example
console.warn(`Animation Trigger: ${event.triggerName}`);
// // openClose is trigger name in this example
// console.warn(`Animation Trigger: ${event.triggerName}`);

// phaseName is "start" or "done"
console.warn(`Phase: ${event.phaseName}`);
// // phaseName is "start" or "done"
// console.warn(`Phase: ${event.phaseName}`);

// in our example, totalTime is 1000 (number of milliseconds in a second)
console.warn(`Total time: ${event.totalTime}`);
// // in our example, totalTime is 1000 (number of milliseconds in a second)
// console.warn(`Total time: ${event.totalTime}`);

// in our example, fromState is either "open" or "closed"
console.warn(`From: ${event.fromState}`);
// // in our example, fromState is either "open" or "closed"
// console.warn(`From: ${event.fromState}`);

// in our example, toState either "open" or "closed"
console.warn(`To: ${event.toState}`);
// // in our example, toState either "open" or "closed"
// console.warn(`To: ${event.toState}`);

// the HTML element itself, the button in this case
console.warn(`Element: ${event.element}`);
// // the HTML element itself, the button in this case
// console.warn(`Element: ${event.element}`);
}

private getComponentDetail():Process{
Expand Down

0 comments on commit 260ad54

Please sign in to comment.