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/lnd/loop/loop-quote/loop-quote.component.ts

23 lines
570 B
TypeScript

import { Component, OnInit, Input } from '@angular/core';
import { LoopQuote } from '../../../shared/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);
}
}