Component that renders a logo image in the bottom bar area
Prop | Description |
---|---|
img | The image url |
text | Text for tooltip |
link | The logo url link |
This guide assumes you are using the Kaltura Player
const config = {
...
ui: {
components: {
logo: {
img: "https://custom-logo-image-url",
url: "https://custom-logo-link-url",
text: 'Logo text'
}
}
}
...
}
const player = KalturaPlayer.setup(config);