header.js 254 B

12345678910
  1. Template.header.helpers({
  2. // Reactively set the color of the page from the color of the current board.
  3. headerTemplate: function() {
  4. return 'headerBoard';
  5. }
  6. });
  7. Template.header.events({
  8. 'click .js-create-board': Popup.open('createBoard')
  9. });