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({
'click .js-rename-board': Popup.open('boardChangeTitle'),
'click .js-open-archives'() {
@ -26,7 +27,7 @@ Template.boardMenuPopup.events({
saveAs(dataToSave, filename);
}
});
}
},
});
Template.boardMenuPopup.helpers({

View file

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