Rewind Button


From version 5 of Nuevo plugin introduce new "Rewind" and "Forward" buttons to rewind or forward video 10 sconds in time.
By default only forward button is enabled and displayed. To show/hide rewind and forward button you can use simple Nuevo plugin options.
Check Nuevo plugin options code below.
<script>
<!--Initialize player + nuevo and hotkeys plugins-->
	var player = videojs('player_1');
	player.nuevo({ 
		title: "Nuevo plugin for VideoJs Player",
		buttonRewind: true
		buttonForward: true

	}); 
</script>