/*-------------------------------------------------------------------------------------------------------------- * Copyright (c) insite-gmbh. All rights reserved. * Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------------------------*/ import { Component } from '@angular/core'; @Component({ selector: 'app-modal', template: ` ` }) export class ModalComponent { public visible = false; private _visibleAnimate = false; public show(): void { this.visible = true; setTimeout(() => this._visibleAnimate = true); } public hide(): void { this._visibleAnimate = false; setTimeout(() => this.visible = false, 300); } }