From 6e2a46055205337ece1935c170cea743d1dea35c Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Thu, 16 Jun 2011 13:47:19 +0200 Subject: [PATCH] fix statusbar --- static/js/pandora/ui/statusbar.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/static/js/pandora/ui/statusbar.js b/static/js/pandora/ui/statusbar.js index bcc0c80..1648727 100644 --- a/static/js/pandora/ui/statusbar.js +++ b/static/js/pandora/ui/statusbar.js @@ -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('') ) .append( - new Ox.Element('span').html(' — ') + Ox.Element('').html(' — ') ) .append( - pandora.$ui.selected = new Ox.Element('span') + pandora.$ui.selected = Ox.Element('') ) ); return that;