popover.component.ts
454 Bytes
import { Component, OnInit, Input } from '@angular/core';
import { PopoverDirective } from 'ngx-bootstrap/popover';
@Component({
selector: 'app-popover',
templateUrl: './popover.component.html',
styleUrls: ['./popover.component.scss']
})
export class PopoverComponent implements OnInit {
@Input() popover: PopoverDirective;
@Input() popoverContent: string;
constructor() { }
ngOnInit() {
}
hide() {
this.popover.hide();
}
}