move js files from js/pandora to js, fixes #1366
This commit is contained in:
parent
b5eda32bbd
commit
a9b7738aa8
104 changed files with 7 additions and 2 deletions
18
static/js/folderBrowser.js
Normal file
18
static/js/folderBrowser.js
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
// vim: et:ts=4:sw=4:sts=4:ft=javascript
|
||||
'use strict';
|
||||
pandora.ui.folderBrowser = function(id, section) {
|
||||
var that = Ox.SplitPanel({
|
||||
elements: [
|
||||
{
|
||||
element: pandora.ui.folderBrowserBar(id, section),
|
||||
size: 24
|
||||
},
|
||||
{
|
||||
element: pandora.$ui.folderList[id] = pandora.ui.folderBrowserList(id, section)
|
||||
}
|
||||
],
|
||||
orientation: 'vertical'
|
||||
});
|
||||
return that;
|
||||
};
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue