pandora/static/js/pandora/ui/mainPanel.js

22 lines
622 B
JavaScript
Raw Normal View History

2011-05-25 19:42:45 +00:00
// vim: et:ts=4:sw=4:sts=4:ft=js
pandora.ui.mainPanel = function() {
var that = new Ox.SplitPanel({
elements: [
{
collapsible: true,
2011-06-06 15:48:11 +00:00
collapsed: !pandora.user.ui.showSidebar,
element: pandora.$ui.leftPanel = pandora.ui.leftPanel(),
2011-05-25 19:42:45 +00:00
resizable: true,
resize: [192, 256, 320, 384],
2011-06-06 15:48:11 +00:00
size: pandora.user.ui.sidebarSize
2011-05-25 19:42:45 +00:00
},
{
2011-06-06 15:48:11 +00:00
element: pandora.$ui.rightPanel = pandora.ui.rightPanel()
2011-05-25 19:42:45 +00:00
}
],
orientation: 'horizontal'
})
return that;
};