]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+about/about.component.ts
Refactor - improve offset content handling with fixed sub-menu and broadcast-message
[github/Chocobozzz/PeerTube.git] / client / src / app / +about / about.component.ts
1 import { Component } from '@angular/core'
2 import { ScreenService } from '@app/core'
3
4 @Component({
5 selector: 'my-about',
6 templateUrl: './about.component.html'
7 })
8
9 export class AboutComponent {
10 constructor (
11 private screenService: ScreenService
12 ) { }
13
14 get isBroadcastMessageDisplayed () {
15 return this.screenService.isBroadcastMessageDisplayed
16 }
17 }