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
|
|
|
|
},
|
|
|
|
{
|
2014-01-22 13:56:04 +00:00
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
|