Ember.View に static data- 属性を割り当てる必要があります{{view }}
。タグではなく View オブジェクトに設定するにはどうすればよいですか。
App.MessagesFormView = Ember.View.extend({
tagName: 'div',
classNames: ['modal', 'fade'],
didInsertElement: function() {
this.$().modal('show')
},
willDestroyElement: function() {
this.$().modal('hide')
},
})