wekan/client/components/main/header.js
Maxime Quandalle 480ef63273 Fix a regression introduced in 71b9a42f
The buttons in the board header were not click-able anymore.
2015-12-09 23:20:44 -05:00

9 lines
181 B
JavaScript

Template.header.helpers({
wrappedHeader() {
return !Session.get('currentBoard');
},
});
Template.header.events({
'click .js-create-board': Popup.open('createBoard'),
});