docker_manager/manager-client/app/components/x-tab.js

9 lines
206 B
JavaScript

export default Em.Component.extend({
tagName: 'li',
classNameBindings: ['active'],
active: function() {
return this.get('childViews').anyBy('active');
}.property('childViews.@each.active')
});