Add annotation plugin

This commit is contained in:
Chocobozzz
2020-08-21 14:46:25 +02:00
parent 47a4d19252
commit aec0c866d5
16 changed files with 4696 additions and 0 deletions

View File

@ -0,0 +1,12 @@
const shared = require('./shared-player')
function register ({ registerHook }) {
registerHook({
target: 'action:embed.player.loaded',
handler: ({ player, videojs, video }) => shared.buildPlayer(video, player, videojs)
})
}
export {
register
}