a7c6e520e6
* All buttons are in the same DOM container as the iframe * Icons for buttons * Rewriting the build process * Simplier state management * Buttons are hidden using CSS
19 lines
334 B
JavaScript
19 lines
334 B
JavaScript
|
|
'use strict'
|
|
|
|
function register ({ registerHook, _peertubeHelpers }) {
|
|
registerHook({
|
|
target: 'action:router.navigation-end',
|
|
handler: () => {
|
|
const container = document.querySelector('#peertube-plugin-livechat-container')
|
|
if (container) {
|
|
container.remove()
|
|
}
|
|
}
|
|
})
|
|
}
|
|
|
|
export {
|
|
register
|
|
}
|