
Controll bar allways visible problem
Hi, I want to set controll bar to allways visible. I set "controlbar": 'bottom' (or controlbar: 'bottom') but nothing happend, it seems like the default option: controlbar: 'over' is still applied and refusing my attempt to change it. Could you please help me with that?
This is how whole my code looks like:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<script src="http://jwpsrv.com/library/sometoken.js"></script>
</head>
<body>
<div id="player">
</div>
<script>
jwplayer("player").setup({
file: "http://somevideourl.mp4",
image: "http://somepictureurl.jpg",
height: 510,
width: 660,
"controlbar": 'bottom',
});
</script>
</body>
</html>