Disable click on listbar
Goog morning,
I'm setting a playlist and I need that my customer can't seek in a video or from videos,
for that I'm using this api :
jwplayer().onControls(function() {
jwplayer().play(true);
});
jwplayer().onDisplayClick(function() {
jwplayer().play(true);
});
But if I create a list bar everyone can click on it and change the video before the end of this.
I need something like 'onlistbarClick' or a configuration like
listbar: {
clickable:'false',
position: "bottom",
size: 240
}
if it is not possible now maybe it can is a new features in next release.