forked from 0x2620/pandora
display likes on info page
This commit is contained in:
parent
7d44b328e1
commit
0c7fc829d1
1 changed files with 4 additions and 3 deletions
|
@ -409,14 +409,15 @@ pandora.ui.infoView = function(data) {
|
||||||
$div.html(html.join('; '));
|
$div.html(html.join('; '));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (data.rating || data.votes) {
|
if (data.rating || data.votes || data.likes) {
|
||||||
$div = $('<div>')
|
$div = $('<div>')
|
||||||
.css(css)
|
.css(css)
|
||||||
.appendTo($text);
|
.appendTo($text);
|
||||||
html = [];
|
html = [];
|
||||||
['rating', 'votes'].forEach(function(key) {
|
['rating', 'votes', 'likes'].forEach(function(key) {
|
||||||
|
var digits = key == 'rating' ? 0 : key == 'votes' ? 2 : 1;
|
||||||
data[key] && html.push(
|
data[key] && html.push(
|
||||||
formatKey(key) + Ox.formatNumber(data[key], key == 'rating' ? 0 : 2) + '%'
|
formatKey(key) + Ox.formatNumber(data[key], digits) + '%'
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
$div.html(html.join('; '));
|
$div.html(html.join('; '));
|
||||||
|
|
Loading…
Reference in a new issue