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'
|
textAlign: 'center'
|
||||||
})
|
})
|
||||||
.append(
|
.append(
|
||||||
new Ox.Element()
|
Ox.Element()
|
||||||
.css({
|
.css({
|
||||||
marginTop: '2px',
|
marginTop: '2px',
|
||||||
fontSize: '9px'
|
fontSize: '9px'
|
||||||
})
|
})
|
||||||
.append(
|
.append(
|
||||||
pandora.$ui.total = new Ox.Element('span')
|
pandora.$ui.total = Ox.Element('<span>')
|
||||||
)
|
)
|
||||||
.append(
|
.append(
|
||||||
new Ox.Element('span').html(' — ')
|
Ox.Element('<span>').html(' — ')
|
||||||
)
|
)
|
||||||
.append(
|
.append(
|
||||||
pandora.$ui.selected = new Ox.Element('span')
|
pandora.$ui.selected = Ox.Element('<span>')
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
return that;
|
return that;
|
||||||
|
|
Loading…
Reference in a new issue