oxspeed/js/ui/appPanel.js

20 lines
502 B
JavaScript
Raw Normal View History

2013-03-04 08:44:48 +00:00
pandora.ui.appPanel = function() {
var that = Ox.SplitPanel({
elements: [
{
element: pandora.$ui.mainMenu = pandora.ui.mainMenu(),
size: 20
},
{
//element: Ox.Element().text("Please load a video, etc.")
2013-03-04 08:44:48 +00:00
element: pandora.$ui.mainPanel = pandora.ui.mainPanel()
}
],
orientation: 'vertical'
});
return that;
}