I would like to have a media transport overlay that doesn't have a play pause button. The documents lead me to believe this is as simple as passing a parameter set to false into the constructor, like this:
CODE
createView: function() {
this.controls.overlay = new KONtx.control.MediaTransportOverlay({
playButton: false
}).appendTo(this);
And the result is a transport control with no play / pause button. But unfortunately I can't play an audio stream when I remove the button because the following generates an error.
CODE
_startPlaylist: function(playlistID) {
log("jjj next line causes error");
this.controls.overlay.resetState();
Is there something else I should do? Should I 'patch' the overlay source code to fix the bug? Other suggestions?