Using Vimeo's player.js API, I'm setting options on the player to disable the title upon initialization:
var options = {
id: 59777392,
title: false
};
var vimPlayer = new Vimeo.Player('myDiv', options);
The video player correctly displays without a title as expected.
However, when loading a different video using the loadVideo() method, the 'title: false' option seems to be overridden:
player.loadVideo(76979871);
Subsequent loads display the title, despite the initial setting.
Is there a way to maintain the 'title: false' option throughout all video loads? I've tried setting the attribute 'data-vimeo-title="false"' on the div itself and passing options in the loadVideo()
function, but with no success.