summaryrefslogtreecommitdiffstats
path: root/client/components/boards/boardHeader.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/components/boards/boardHeader.js')
-rw-r--r--client/components/boards/boardHeader.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/client/components/boards/boardHeader.js b/client/components/boards/boardHeader.js
index f8ccfba5..acf40f44 100644
--- a/client/components/boards/boardHeader.js
+++ b/client/components/boards/boardHeader.js
@@ -41,10 +41,6 @@ Template.boardChangeTitlePopup.events({
});
BlazeComponent.extendComponent({
- template() {
- return 'boardHeaderBar';
- },
-
isStarred() {
const boardId = Session.get('currentBoard');
const user = Meteor.user();
@@ -93,10 +89,6 @@ BlazeComponent.extendComponent({
}).register('boardHeaderBar');
BlazeComponent.extendComponent({
- template() {
- return 'boardChangeColorPopup';
- },
-
backgroundColors() {
return Boards.simpleSchema()._schema.color.allowedValues;
},
@@ -119,10 +111,6 @@ BlazeComponent.extendComponent({
}).register('boardChangeColorPopup');
BlazeComponent.extendComponent({
- template() {
- return 'createBoardPopup';
- },
-
onCreated() {
this.visibilityMenuIsOpen = new ReactiveVar(false);
this.visibility = new ReactiveVar('private');
@@ -170,10 +158,6 @@ BlazeComponent.extendComponent({
}).register('createBoardPopup');
BlazeComponent.extendComponent({
- template() {
- return 'boardChangeVisibilityPopup';
- },
-
visibilityCheck() {
const currentBoard = Boards.findOne(Session.get('currentBoard'));
return this.currentData() === currentBoard.permission;