wekan/client/components/main/layouts.js

14 lines
231 B
JavaScript
Raw Normal View History

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