35 lines
664 B
TypeScript
35 lines
664 B
TypeScript
|
import {Component, OnInit, OnDestroy, Input, EventEmitter, Output} from '@angular/core';
|
||
|
import { ActivatedRoute, Router } from '@angular/router';
|
||
|
import { PagesComponent } from 'app/pages/pages.component';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'of-member-terms',
|
||
|
templateUrl: './terms.component.html',
|
||
|
})
|
||
|
export class TermsComponent implements OnInit, OnDestroy {
|
||
|
|
||
|
@Input() termsDisplay;
|
||
|
@Output() close = new EventEmitter();
|
||
|
|
||
|
constructor(
|
||
|
private activatedRoute: ActivatedRoute,
|
||
|
private router: Router,
|
||
|
) {
|
||
|
}
|
||
|
|
||
|
|
||
|
ngOnInit() {
|
||
|
|
||
|
}
|
||
|
|
||
|
ngOnDestroy() {
|
||
|
}
|
||
|
|
||
|
onTermsClose() {
|
||
|
this.termsDisplay = false;
|
||
|
}
|
||
|
onCancel() {
|
||
|
this.close.emit();
|
||
|
}
|
||
|
}
|