Translate the label colors

This commit is contained in:
Maxime Quandalle 2015-10-15 00:52:32 +02:00
parent 944a1065d3
commit 15ebfa63c6
4 changed files with 17 additions and 3 deletions

View file

@ -13,3 +13,7 @@ Blaze.registerHelper('currentCard', () => {
});
Blaze.registerHelper('getUser', (userId) => Users.findOne(userId));
UI.registerHelper('concat', function (...args) {
return Array.prototype.slice.call(args, 0, -1).join('');
});