mirror of
https://github.com/thelounge/thelounge
synced 2024-12-21 01:43:07 +00:00
9 lines
171 B
JavaScript
9 lines
171 B
JavaScript
Handlebars.registerHelper(
|
|
"roundBadgeNumber", function(count) {
|
|
if (count < 1000) {
|
|
return count;
|
|
}
|
|
|
|
return (count / 1000).toFixed(2).slice(0, -1) + "k";
|
|
}
|
|
);
|