灰烬模态仅显示叠加

时间:2015-04-25 19:04:53

标签: css twitter-bootstrap ember.js

我无法使用Ember显示模态。我按照了食谱,但当我点击模态按钮时,它只显示叠加而不是模态本身。

这是我的要点:https://gist.github.com/sunocean-sand/e11111cea44274417012

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

我的一个应用程序中有类似的实现。尝试将export default Ember.Route.extend({ actions: { openModal: function(modal) { this.render(modal, { into: 'application', outlet: 'modal' }); return Ember.run.schedule('afterRender', function() { Ember.$('.modal').modal('show'); }); }, closeModal: function() { Ember.$('.modal').modal('hide'); return this.disconnectOutlet({ outlet: 'modal', parentView: 'application' }); } } }); 更改为以下代码。我相信你的问题是你没有使用Bootstrap的Programmatic API

{{1}}