dashboard
repositories
activity
search
login
common
/
securis
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
#3527 feature - Added more features to angular2 version
rsanchez
2017-03-10
2762277c60db7df5ad3214b10a0dd93d4f2f1128
[common/securis.git]
/
securis
/
src
/
main
/
webapp
/
src
/
app
/
forms
/
pack.form.component.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import { PacksService } from '../resources/packs';
import { LocaleService } from '../common/i18n';
import { TdDataTableService, TdDataTableSortingOrder, ITdDataTableSortChangeEvent, ITdDataTableColumn } from '@covalent/core';
import { IPageChangeEvent } from '@covalent/core';
import { Component, AfterViewInit } from '@angular/core';
import { TdMediaService } from '@covalent/core';
@Component({
selector: 'pack-form',
templateUrl: 'src/app/forms/pack.form.html'
})
export class PackFormComponent implements AfterViewInit {
form_title: string = '';
form_subtitle: string = '';
constructor(private packs: PacksService,
private $L: LocaleService) {
this.form_title = $L.get('Pack data');
this.form_subtitle = $L.get('Fullfill the pack data and save the changes');
}
ngOnInit(): void {
}
ngAfterViewInit(): void {
}
}