There are 2 ways of disabling the right click menu on the player.
By default, the contextmenu
is included between the basic features of Web SDK. If you build your SDK with this feature disabled, your player will not have the context menu.
If you do not want to re-build your player, you can simply add the following CSS rule after calling your THEOplayer ui.css
. You can add this rule in either:
a) in a style element (see below) or
b) in an external style.
See example:
<link rel="stylesheet" type="text/css" href="/path/to/ui.css" />
<style>
.theo-context-menu {
display: none;
}
</style>