fix statusbar
This commit is contained in:
parent
6e287e5110
commit
6e2a460552
1 changed files with 4 additions and 4 deletions
|
@ -7,19 +7,19 @@ pandora.ui.statusbar = function() {
|
|||
textAlign: 'center'
|
||||
})
|
||||
.append(
|
||||
new Ox.Element()
|
||||
Ox.Element()
|
||||
.css({
|
||||
marginTop: '2px',
|
||||
fontSize: '9px'
|
||||
})
|
||||
.append(
|
||||
pandora.$ui.total = new Ox.Element('span')
|
||||
pandora.$ui.total = Ox.Element('<span>')
|
||||
)
|
||||
.append(
|
||||
new Ox.Element('span').html(' — ')
|
||||
Ox.Element('<span>').html(' — ')
|
||||
)
|
||||
.append(
|
||||
pandora.$ui.selected = new Ox.Element('span')
|
||||
pandora.$ui.selected = Ox.Element('<span>')
|
||||
)
|
||||
);
|
||||
return that;
|
||||
|
|
Loading…
Reference in a new issue