Fix a regression introduced in 71b9a42f

The buttons in the board header were not click-able anymore.
This commit is contained in:
Maxime Quandalle 2015-12-09 23:19:10 -05:00
parent f9f4747a6a
commit 480ef63273
2 changed files with 2 additions and 7 deletions

View file

@ -30,7 +30,7 @@ Template.boardChangeTitlePopup.events({
BlazeComponent.extendComponent({
template() {
return 'headerBoard';
return 'boardHeaderBar';
},
isStarred() {
@ -74,7 +74,7 @@ BlazeComponent.extendComponent({
},
}];
},
}).register('headerBoard');
}).register('boardHeaderBar');
BlazeComponent.extendComponent({
template() {

View file

@ -1,9 +1,4 @@
Template.header.helpers({
// Reactively set the color of the page from the color of the current board.
headerTemplate() {
return 'headerBoard';
},
wrappedHeader() {
return !Session.get('currentBoard');
},