split up pandora.js
This commit is contained in:
parent
565b5d35c7
commit
6073a1cd19
41 changed files with 4508 additions and 3931 deletions
17
static/js/pandora/ui/folderBrowser.js
Normal file
17
static/js/pandora/ui/folderBrowser.js
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
// vim: et:ts=4:sw=4:sts=4:ft=js
|
||||
pandora.ui.folderBrowser = function(id) {
|
||||
var that = new Ox.SplitPanel({
|
||||
elements: [
|
||||
{
|
||||
element: pandora.ui.folderBrowserBar(),
|
||||
size: 24
|
||||
},
|
||||
{
|
||||
element: app.$ui.folderList[id] = pandora.ui.folderBrowserList(id)
|
||||
}
|
||||
],
|
||||
orientation: 'vertical'
|
||||
});
|
||||
return that;
|
||||
};
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue