dnet45/modules/uoa-repository-dashboard-gui/trunk/app/pages/adminPg/adminPg-help-texts.component.ts @ 50247
1 |
import {Component, OnInit} from "@angular/core"; |
---|---|
2 |
|
3 |
@Component ({ |
4 |
selector: 'app-admin-help-texts', |
5 |
templateUrl: 'adminPg-help-texts.component.html' |
6 |
})
|
7 |
|
8 |
export class AdminPgHelpTextsComponent implements OnInit { |
9 |
helpTextContent: string = ""; |
10 |
previewContent: string = ""; |
11 |
constructor() {} |
12 |
|
13 |
|
14 |
|
15 |
ngOnInit() {} |
16 |
|
17 |
showPreview() { |
18 |
this.previewContent = this.helpTextContent; |
19 |
}
|
20 |
|
21 |
|
22 |
}
|