wekan/client/components/main/layouts.js

14 lines
233 B
JavaScript
Raw Normal View History

Meteor.subscribe('boards');
BlazeLayout.setRoot('body');
Template.userFormsLayout.onRendered(() => {
EscapeActions.executeAll();
});
Template.defaultLayout.events({
'click .js-close-modal': () => {
Modal.close();
},
});