forked from 0x2620/pandora
build static, move js files
This commit is contained in:
parent
2c378e46ea
commit
7586f2746a
65 changed files with 146 additions and 116 deletions
27
static/js/pandora/statusbar.js
Normal file
27
static/js/pandora/statusbar.js
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
// vim: et:ts=4:sw=4:sts=4:ft=javascript
|
||||
pandora.ui.statusbar = function() {
|
||||
var that = Ox.Bar({
|
||||
size: 16
|
||||
})
|
||||
.css({
|
||||
textAlign: 'center'
|
||||
})
|
||||
.append(
|
||||
Ox.Element()
|
||||
.css({
|
||||
marginTop: '2px',
|
||||
fontSize: '9px'
|
||||
})
|
||||
.append(
|
||||
pandora.$ui.total = Ox.Element('<span>')
|
||||
)
|
||||
.append(
|
||||
Ox.Element('<span>').html(' — ')
|
||||
)
|
||||
.append(
|
||||
pandora.$ui.selected = Ox.Element('<span>')
|
||||
)
|
||||
);
|
||||
return that;
|
||||
};
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue