mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-06 14:05:46 +01:00
fixed human readable view post counts
This commit is contained in:
@@ -299,8 +299,7 @@ var socket,
|
||||
|
||||
app.makeNumbersHumanReadable = function(selector) {
|
||||
$(selector).each(function() {
|
||||
var num = parseInt($(this).html(), 10);
|
||||
$(this).html(utils.makeNumberHumanReadable(num));
|
||||
$(this).html(utils.makeNumberHumanReadable($(this).attr('title')));
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -207,15 +207,18 @@
|
||||
},
|
||||
|
||||
makeNumberHumanReadable: function(num) {
|
||||
num = parseInt(num, 10);
|
||||
if (num > 999999) {
|
||||
return (num / 1000000).toFixed(1) + 'm';
|
||||
}
|
||||
else if(num > 999) {
|
||||
return (num / 1000).toFixed(1) + 'k';
|
||||
}
|
||||
var n = parseInt(num, 10);
|
||||
if(!n) {
|
||||
return num;
|
||||
}
|
||||
if (n > 999999) {
|
||||
return (n / 1000000).toFixed(1) + 'm';
|
||||
}
|
||||
else if(n > 999) {
|
||||
return (n / 1000).toFixed(1) + 'k';
|
||||
}
|
||||
return n;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user