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

BlazeLayout.setRoot('body');

Template.userFormsLayout.onRendered(() => {
  EscapeActions.executeAll();
});

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