summaryrefslogtreecommitdiffstats
path: root/client/config
diff options
context:
space:
mode:
authorMaxime Quandalle <maxime@quandalle.com>2015-12-24 13:07:55 +0100
committerMaxime Quandalle <maxime@quandalle.com>2015-12-24 13:13:05 +0100
commit592aa6d5762b6d04e4f66364da4a58cea6b25d67 (patch)
tree6b320f99f7e894f5f7eeda85e0ad30bf45c2da17 /client/config
parentd9bc56896dc1bb546dc8d430827dc17889c97535 (diff)
downloadwekan-592aa6d5762b6d04e4f66364da4a58cea6b25d67.tar.gz
wekan-592aa6d5762b6d04e4f66364da4a58cea6b25d67.tar.bz2
wekan-592aa6d5762b6d04e4f66364da4a58cea6b25d67.zip
Partially revert aae5030
As discussed in #370 and announced in the official Eslint-meteor plugin repository (https://github.com/dferber90/eslint-plugin-meteor), it is recommended to not use this plugin anymore has the author has it is currently broken and the author has abandoned it.
Diffstat (limited to 'client/config')
-rw-r--r--client/config/blazeHelpers.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/config/blazeHelpers.js b/client/config/blazeHelpers.js
index adf5ef6a..f3a1757f 100644
--- a/client/config/blazeHelpers.js
+++ b/client/config/blazeHelpers.js
@@ -14,6 +14,6 @@ Blaze.registerHelper('currentCard', () => {
Blaze.registerHelper('getUser', (userId) => Users.findOne(userId));
-UI.registerHelper('concat', function (...args) {
+Blaze.registerHelper('concat', function (...args) {
return Array.prototype.slice.call(args, 0, -1).join('');
});