summaryrefslogtreecommitdiffstats
path: root/client/components/main/header.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/components/main/header.js')
-rw-r--r--client/components/main/header.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/client/components/main/header.js b/client/components/main/header.js
index 7b7e431f..30cb2d8f 100644
--- a/client/components/main/header.js
+++ b/client/components/main/header.js
@@ -1,14 +1,14 @@
Template.header.helpers({
// Reactively set the color of the page from the color of the current board.
- headerTemplate: function() {
+ headerTemplate() {
return 'headerBoard';
},
- wrappedHeader: function() {
- return ! Session.get('currentBoard');
- }
+ wrappedHeader() {
+ return !Session.get('currentBoard');
+ },
});
Template.header.events({
- 'click .js-create-board': Popup.open('createBoard')
+ 'click .js-create-board': Popup.open('createBoard'),
});