Skip to content

Latest commit

 

History

History
63 lines (52 loc) · 1.11 KB

README.md

File metadata and controls

63 lines (52 loc) · 1.11 KB

Logo

Component that renders a logo image in the bottom bar area

Props

Prop Description
img The image url
text Text for tooltip
link The logo url link

Configuration

img

Type: string | undefined
Default: undefined
Description: Defines logo image url.

text

Type: string | undefined
Default: undefined
Description: Defines logo tooltip text.

link

Type: string | undefined
Default: undefined
Description: Defines logo image link url.

Player configuration

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);