You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/src/app/shared/components/ln-services/loop/loop-quote/loop-quote.component.ts

26 lines
578 B
TypeScript

import { Component, OnInit, Input } from '@angular/core';
import { LoopQuote } from '../../../../models/loopModels';
@Component({
selector: 'rtl-loop-quote',
templateUrl: './loop-quote.component.html',
styleUrls: ['./loop-quote.component.scss']
})
export class LoopQuoteComponent implements OnInit {
@Input() quote: LoopQuote = {};
@Input() termCaption = '';
@Input() showPanel = true;
@Input() panelExpanded = false;
public flgShowPanel = false;
constructor() { }
ngOnInit() {
setTimeout(() => {
this.flgShowPanel = true;
}, 1200);
}
}