fix eslint

This commit is contained in:
Xavier Priour 2015-12-13 21:38:22 +01:00
parent e304185c23
commit f5eba16a50
2 changed files with 3 additions and 3 deletions

View file

@ -1,3 +1,4 @@
/* global saveAs */
Template.boardMenuPopup.events({ Template.boardMenuPopup.events({
'click .js-rename-board': Popup.open('boardChangeTitle'), 'click .js-rename-board': Popup.open('boardChangeTitle'),
'click .js-open-archives'() { 'click .js-open-archives'() {
@ -26,7 +27,7 @@ Template.boardMenuPopup.events({
saveAs(dataToSave, filename); saveAs(dataToSave, filename);
} }
}); });
} },
}); });
Template.boardMenuPopup.helpers({ Template.boardMenuPopup.helpers({

View file

@ -10,7 +10,7 @@ Meteor.methods({
} else { } else {
throw new Meteor.Error('error-board-notAMember'); throw new Meteor.Error('error-board-notAMember');
} }
} },
}); });
class Exporter { class Exporter {
@ -53,7 +53,6 @@ class Exporter {
'profile.avatarUrl': 1, 'profile.avatarUrl': 1,
}}; }};
result.users = Users.find(byUserIds, userFields).fetch(); result.users = Users.find(byUserIds, userFields).fetch();
//return JSON.stringify(result);
return result; return result;
} }
} }