The endAction option of the Nuevo plugin allows you to change it and display either a related container or a sharing container when video ends.The endAction option has two possible parameters: 'related' or 'share'. Example video above makes use of 'related' action when the video ends, you can change it to 'share' action. Just wait till video ends and see how it works!
<script>var player = videojs('example_video_1');player.nuevo({logo: '//domain.com/path/to/logo.png',logoposition: 'RT',logourl: '//domain.com',endAction: "related"});</script>
<style>.custom-end{display:table-cell;vertical-align:middle;text-align:center;white-space:nowrap}.custom-end img {border:0}.custom-end .thanks{margin:10px 0 20px 0;font-size:18px}.custom-end .end-button{font-size:16px;margin:0 4px;cursor:pointer;padding:8px 10px;border:0;background-color:#cc0000;color:#fff}.custom-end .end-button:hover{background-color:#e5e5e5;color:#222}</style><div class="custom-end"><img src="/images/nuevo_mid.png"/><p class="thanks">Thank you for watching</p><span class="end-button" onclick="player.play()">Play Again</span><a href="/nuevo/order" class="end-button">Buy Player</a></div>
var my_end = '<style>.custom-end{display:table-cell;vertical-align:middle;text-align:center;white-space:nowrap}.custom-end img{border:0}.custom-end .thanks{margin:10px 0 20px 0;font-size:24px}.custom-end .end-button:hover{background-color:#e5e5e5;color:#222}.custom-end .end-button{font-size:16px;margin:0 4px;cursor:pointer;padding:8px 10px;border:0;background-color:#cc0000;color:#fff}</style><div class="custom-end"><img src="/images/nuevo_mid.png"><p class="thanks">Thank you for watching</p><span class="end-button" onclick="player.play()">Play Again</span><a href="/nuevo/order" class="end-button">Buy Player</a></div>';
player.nuevo({ customEnd: my_end })