Update hello world

This commit is contained in:
Chocobozzz
2021-06-30 16:44:42 +02:00
parent ea025763fb
commit 7e43cb5f18
5 changed files with 62 additions and 19 deletions

View File

@ -63,6 +63,14 @@ function register ({ registerHook, peertubeHelpers }) {
}
})
registerHook({
target: 'filter:internal.player.videojs.options.result',
handler: (options) => {
options.poster = ''
return options
}
})
peertubeHelpers.notifier.info('you are on the watch page', 'useless', 1000)
}