]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-watch/player-styles.component.ts
Improve wait transcoding help
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-watch / player-styles.component.ts
CommitLineData
db5814c0
C
1import { Component, ViewEncapsulation } from '@angular/core'
2
3/*
4* Allows to lazy load global player styles in the watch component
5*/
6
7@Component({
8 selector: 'my-player-styles',
9 template: '',
10 styleUrls: [ './player-styles.component.scss' ],
9df52d66 11 /* eslint-disable @angular-eslint/use-component-view-encapsulation */
db5814c0
C
12 encapsulation: ViewEncapsulation.None
13})
14export class PlayerStylesComponent {
15}