mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-10 16:05:49 +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')));
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user