]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/assets/player/shared/settings/settings-panel-child.ts
Fix lint
[github/Chocobozzz/PeerTube.git] / client / src / assets / player / shared / settings / settings-panel-child.ts
CommitLineData
512decf3 1import videojs from 'video.js'
f5fcd9f7
C
2
3const Component = videojs.getComponent('Component')
4
5class SettingsPanelChild extends Component {
6
f5fcd9f7
C
7 createEl () {
8 return super.createEl('div', {
9 className: 'vjs-settings-panel-child',
10 innerHTML: '',
11 tabIndex: -1
12 })
13 }
14}
15
16Component.registerComponent('SettingsPanelChild', SettingsPanelChild)
17
18export { SettingsPanelChild }