Remove unnecessary template name declaration

This code was duplicate with the name we use to `register` the
component. A update of blaze-component removed the need to duplicate
this declaration.
This commit is contained in:
Maxime Quandalle 2016-01-03 23:45:46 +01:00
parent 46747b01fb
commit ac6491ea12
16 changed files with 0 additions and 92 deletions

View file

@ -9,10 +9,6 @@ const viewTitles = {
};
BlazeComponent.extendComponent({
template() {
return 'sidebar';
},
mixins() {
return [Mixins.InfiniteScrolling, Mixins.PerfectScrollbar];
},
@ -232,10 +228,6 @@ Template.membersWidget.onRendered(draggableMembersLabelsWidgets);
Template.labelsWidget.onRendered(draggableMembersLabelsWidgets);
BlazeComponent.extendComponent({
template() {
return 'addMemberPopup';
},
onCreated() {
this.error = new ReactiveVar('');
this.loading = new ReactiveVar(false);