1234567891011121314 |
- Template.header.helpers({
- // Reactively set the color of the page from the color of the current board.
- headerTemplate: function() {
- return 'headerBoard';
- },
- wrappedHeader: function() {
- return ! Session.get('currentBoard');
- }
- });
- Template.header.events({
- 'click .js-create-board': Popup.open('createBoard')
- });
|