cablegates/static/js/pandora/ui/folderBrowserBar.js

18 lines
407 B
JavaScript
Raw Normal View History

2011-07-29 18:37:11 +00:00
// vim: et:ts=4:sw=4:sts=4:ft=javascript
2011-05-25 19:42:45 +00:00
pandora.ui.folderBrowserBar = function(id) {
2011-06-19 17:49:25 +00:00
var that = Ox.Bar({
2011-05-25 19:42:45 +00:00
size: 24
});
2011-06-19 17:49:25 +00:00
pandora.$ui.findListInput = Ox.Input({
2011-05-25 19:42:45 +00:00
placeholder: 'Find User',
width: 184 - Ox.UI.SCROLLBAR_SIZE
})
.css({
margin: '4px',
align: 'right'
})
.appendTo(that);
return that;
};