oxspeed/js/ui/videoPanel.js

19 lines
584 B
JavaScript

pandora.ui.videoPanel = function() {
var that = pandora.$ui.videoPanel = Ox.SplitPanel({
elements: [
{
element: pandora.$ui.videoPlayer = Ox.Element().text("no video yet"),
size: 300
},
{
// element: pandora.$ui.helpPanel = pandora.ui.helpPanel()
//element: pandora.$ui.annotationsPanel = pandora.ui.annotationsPanel()
element: pandora.$ui.annotationsPanel = Ox.Element()
}
],
orientation: 'vertical'
});
return that;
}