member_webapp/@overflow/member/component/member-policy.component.ts

28 lines
451 B
TypeScript
Raw Normal View History

2018-05-31 12:11:31 +00:00
import { Component, OnInit, OnDestroy, EventEmitter, Input, Output } from '@angular/core';
2018-05-28 05:41:56 +00:00
@Component({
selector: 'of-member-policy',
templateUrl: './member-policy.component.html',
})
export class MemberPolicyComponent implements OnInit, OnDestroy {
2018-05-31 12:11:31 +00:00
@Input() policyDisplay;
2018-05-28 05:41:56 +00:00
@Output() close = new EventEmitter();
constructor(
) {
}
ngOnInit() {
}
ngOnDestroy() {
}
onTermsClose() {
this.policyDisplay = false;
}
}