split up pandora.js
This commit is contained in:
parent
565b5d35c7
commit
6073a1cd19
41 changed files with 4508 additions and 3931 deletions
27
static/js/pandora/ui/statusbar.js
Normal file
27
static/js/pandora/ui/statusbar.js
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
// vim: et:ts=4:sw=4:sts=4:ft=js
|
||||
pandora.ui.statusbar = function() {
|
||||
var that = new Ox.Bar({
|
||||
size: 16
|
||||
})
|
||||
.css({
|
||||
textAlign: 'center'
|
||||
})
|
||||
.append(
|
||||
new Ox.Element()
|
||||
.css({
|
||||
marginTop: '2px',
|
||||
fontSize: '9px'
|
||||
})
|
||||
.append(
|
||||
app.$ui.total = new Ox.Element('span')
|
||||
)
|
||||
.append(
|
||||
new Ox.Element('span').html(' — ')
|
||||
)
|
||||
.append(
|
||||
app.$ui.selected = new Ox.Element('span')
|
||||
)
|
||||
);
|
||||
return that;
|
||||
};
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue