2017-07-12 14:34:32 +00:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
2017-07-13 14:43:22 +00:00
|
|
|
import { FuseLayoutService } from '../../../core/services/layout.service';
|
2017-07-08 16:12:52 +00:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector : 'fuse-mail',
|
|
|
|
templateUrl: './mail.component.html',
|
|
|
|
styleUrls : ['./mail.component.scss']
|
|
|
|
})
|
|
|
|
export class MailComponent implements OnInit
|
|
|
|
{
|
|
|
|
|
2017-07-13 14:43:22 +00:00
|
|
|
constructor(private layoutService: FuseLayoutService)
|
2017-07-08 16:12:52 +00:00
|
|
|
{
|
|
|
|
this.layoutService.setSettings({
|
2017-07-12 14:34:32 +00:00
|
|
|
navigation: 'left',
|
2017-07-08 16:12:52 +00:00
|
|
|
toolbar : 'below',
|
2017-07-12 14:34:32 +00:00
|
|
|
footer : 'below'
|
2017-07-08 16:12:52 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
ngOnInit()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|