mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 11:34:24 +03:00
20f40e7e32
Closes #3417
10 lines
240 B
JavaScript
10 lines
240 B
JavaScript
var ItemView = Ember.View.extend({
|
|
classNameBindings: ['active'],
|
|
|
|
active: Ember.computed('childViews.firstObject.active', function () {
|
|
return this.get('childViews.firstObject.active');
|
|
})
|
|
});
|
|
|
|
export default ItemView;
|