aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/assets/player/videojs-components/settings-panel-child.ts
blob: 161420c38b9f8b012147d0f409c73bb5e68f16f3 (plain) (tree)
1
2
3
4
5
6
                              




                                                   











                                                                     
import videojs from 'video.js'

const Component = videojs.getComponent('Component')

class SettingsPanelChild extends Component {

  createEl () {
    return super.createEl('div', {
      className: 'vjs-settings-panel-child',
      innerHTML: '',
      tabIndex: -1
    })
  }
}

Component.registerComponent('SettingsPanelChild', SettingsPanelChild)

export { SettingsPanelChild }