oxspeed/js/ui/videoPanel.js

19 lines
584 B
JavaScript
Raw Normal View History

2013-03-04 08:44:48 +00:00
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()
2013-03-04 08:44:48 +00:00
}
],
orientation: 'vertical'
});
return that;
}