diff --git a/static/js/pandora/infoView.0xdb.js b/static/js/pandora/infoView.0xdb.js index 8c05d25b..59c2af9e 100644 --- a/static/js/pandora/infoView.0xdb.js +++ b/static/js/pandora/infoView.0xdb.js @@ -460,8 +460,15 @@ pandora.ui.infoView = function(data) { var value = data[key] || 0; $('
') .css({marginBottom: '4px'}) - .append(formatKey(key == 'votes' ? 'Mainstream Score' : 'Arthouse Score'), true) - .append(Ox.Theme.formatColorPercent(value, 1, true)) + .append( + formatKey( + key == 'votes' ? 'Mainstream Score' : 'Arthouse Score', true + ) + ) + .append( + Ox.Theme.formatColorPercent(value, 1, true) + .css({textAlign: 'right'}) + ) .appendTo($statistics); });