【发布时间】:2016-05-27 15:23:34
【问题描述】:
我使用了 ember-modal-dialog。我已将模式设置为关闭(根据 git 上的示例 - https://github.com/yapplabs/ember-modal-dialog)。但是当我点击背景时它并没有关闭。
应用程序.hbs
{{#if isShowingModal}}
{{#modal-dialog close="toggleModal" targetAttachment="center" translucentOverlay=true}}
abc
{{/modal-dialog}}
{{/if}}
applications.js
export default Ember.Controller.extend({
isShowingModal: false,
actions: {
showNavMenu: function() {
this.toggleProperty('isShowingModal');
}
}
});
【问题讨论】: