mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
7 lines
206 B
JavaScript
7 lines
206 B
JavaScript
|
export default Ember.View.extend({
|
||
|
classNameBindings: ['active'],
|
||
|
|
||
|
active: function () {
|
||
|
return this.get('childViews.firstObject.active');
|
||
|
}.property('childViews.firstObject.active')
|
||
|
});
|