summaryrefslogtreecommitdiffstats
path: root/client/components/main/layouts.js
blob: 11a43313ab9dd96254e9b5116ded2137162d75c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Meteor.subscribe('boards')

BlazeLayout.setRoot('body')

Template.userFormsLayout.onRendered(function() {
  EscapeActions.executeAll()
})

Template.defaultLayout.events({
  'click .js-close-modal': () => {
    Modal.close()
  }
})