mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-18 16:01:40 +03:00
fb6c3c6b56
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;
|