thelounge/client/js/libs/handlebars/users.js

6 lines
118 B
JavaScript
Raw Normal View History

2014-09-10 18:50:59 +02:00
Handlebars.registerHelper(
"users", function(count) {
return count + " " + (count === 1 ? "user" : "users");
2014-09-10 18:50:59 +02:00
}
);