2018-04-06 17:11:24 +09:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
2018-04-10 19:20:44 +09:00
|
|
|
import {DialogModule} from 'primeng/dialog';
|
|
|
|
import { SettingComponent as DiscoverySettingComponent } from 'packages/discovery/component/setting/setting.component';
|
|
|
|
|
2018-04-06 17:11:24 +09:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'of-pages-home',
|
|
|
|
templateUrl: './home-page.component.html',
|
|
|
|
})
|
|
|
|
export class HomePageComponent implements OnInit {
|
|
|
|
|
2018-04-10 19:20:44 +09:00
|
|
|
display = false;
|
|
|
|
|
2018-04-06 17:11:24 +09:00
|
|
|
constructor() { }
|
|
|
|
|
|
|
|
ngOnInit() {
|
|
|
|
}
|
|
|
|
|
2018-04-10 19:20:44 +09:00
|
|
|
|
|
|
|
|
|
|
|
showDialog() {
|
|
|
|
this.display = true;
|
|
|
|
}
|
|
|
|
|
2018-04-06 17:11:24 +09:00
|
|
|
}
|