fixed human readable view post counts

This commit is contained in:
Baris Usakli
2013-11-29 14:12:19 -05:00
parent bcfb4ca0e4
commit f6d57a241d
2 changed files with 10 additions and 8 deletions

View File

@@ -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')));
});
}