19 lines
456 B
JavaScript
19 lines
456 B
JavaScript
pandora.ui.mainPanel = function() {
|
|
var that = Ox.SplitPanel({
|
|
elements: [
|
|
{
|
|
element: pandora.$ui.videoPanel = pandora.ui.videoPanel(),
|
|
size: 400,
|
|
resizable: true,
|
|
resize: [0,600]
|
|
},
|
|
{
|
|
element: pandora.$ui.textPanel = pandora.ui.textPanel()
|
|
}
|
|
],
|
|
orientation: 'horizontal'
|
|
});
|
|
return that;
|
|
}
|
|
|