1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00
Ghost-Admin/app/components/gh-activating-list-item.js

22 lines
440 B
JavaScript
Raw Normal View History

import Component from 'ember-component';
import {schedule} from 'ember-runloop';
export default Component.extend({
tagName: 'li',
classNameBindings: ['active'],
active: false,
linkClasses: null,
click() {
this.$('a').blur();
},
actions: {
setActive(value) {
schedule('afterRender', this, function () {
this.set('active', value);
});
}
}
});