Context Menu on right click

Native context pop-up menu when you right click over player is replaced by custom Nuevo simple menu. You can disable context menu completely.

Player Code Setup


<!--Initialize the player and Nuevo plugin-->
<script>
	var player = videojs('player_1)';
	player.nuevo({ 
		contextMenu: false
	}); 
</script>

You can also prepare your own context menu with custom icon and custom text

Player Code Example


<!--Initialize the player and Nuevo plugin-->
<script>
	var player = videojs('player_2)';
	player.nuevo({ 
		contextUrl: 'https://www.wikipedia.org',
		contextText: 'The Free Ecyclopedia',
		contextIcon: 'https://www.wikipedia.org/static/favicon/wikipedia.ico',
	}); 
</script>