style: format code for better readability and consistency
This commit is contained in:
parent
1569922fda
commit
9c12ccd716
2 changed files with 20 additions and 14 deletions
|
@ -1,4 +1,13 @@
|
|||
import { Component, ElementRef, EventEmitter, Input, Output, ViewChild, AfterViewInit, OnDestroy } from '@angular/core';
|
||||
import {
|
||||
Component,
|
||||
ElementRef,
|
||||
EventEmitter,
|
||||
Input,
|
||||
Output,
|
||||
ViewChild,
|
||||
AfterViewInit,
|
||||
OnDestroy,
|
||||
} from '@angular/core';
|
||||
import { ModalAnimationService } from '../../services/modal-animation.service';
|
||||
import gsap from 'gsap';
|
||||
|
||||
|
@ -27,10 +36,7 @@ export class ConfirmationComponent implements AfterViewInit, OnDestroy {
|
|||
}
|
||||
|
||||
private openModal() {
|
||||
this.modalAnimationService.openModal(
|
||||
this.modalCard.nativeElement,
|
||||
this.modalBg.nativeElement
|
||||
);
|
||||
this.modalAnimationService.openModal(this.modalCard.nativeElement, this.modalBg.nativeElement);
|
||||
}
|
||||
|
||||
public closeModal() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue