]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/assets/player/mobile/peertube-mobile-plugin.ts
Add player controls on mobile
[github/Chocobozzz/PeerTube.git] / client / src / assets / player / mobile / peertube-mobile-plugin.ts
1 import videojs from 'video.js'
2 import './peertube-mobile-buttons'
3
4 const Plugin = videojs.getPlugin('plugin')
5
6 class PeerTubeMobilePlugin extends Plugin {
7
8 constructor (player: videojs.Player, options: videojs.PlayerOptions) {
9 super(player, options)
10
11 player.addChild('PeerTubeMobileButtons')
12 }
13 }
14
15 videojs.registerPlugin('peertubeMobile', PeerTubeMobilePlugin)
16 export { PeerTubeMobilePlugin }