split up pandora.js

This commit is contained in:
j 2011-05-25 21:42:45 +02:00
commit 6073a1cd19
41 changed files with 4508 additions and 3931 deletions

View file

@ -0,0 +1,17 @@
// vim: et:ts=4:sw=4:sts=4:ft=js
pandora.ui.folderBrowserBar = function(id) {
var that = new Ox.Bar({
size: 24
});
app.$ui.findListInput = new Ox.Input({
placeholder: 'Find User',
width: 184 - Ox.UI.SCROLLBAR_SIZE
})
.css({
margin: '4px',
align: 'right'
})
.appendTo(that);
return that;
};