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

22 lines
626 B
JavaScript
Raw Normal View History

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