Ghost/ghost/admin/app/components/gh-activating-list-item.js

13 lines
246 B
JavaScript
Raw Normal View History

2015-02-13 07:22:32 +03:00
import Ember from 'ember';
export default Ember.Component.extend({
tagName: 'li',
classNameBindings: ['active'],
active: false,
linkClasses: null,
unfocusLink: function () {
this.$('a').blur();
}.on('click')
});