mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
12 lines
241 B
JavaScript
12 lines
241 B
JavaScript
var ActivatingListItem = Ember.Component.extend({
|
|
tagName: 'li',
|
|
classNameBindings: ['active'],
|
|
active: false,
|
|
|
|
unfocusLink: function () {
|
|
this.$('a').blur();
|
|
}.on('click')
|
|
});
|
|
|
|
export default ActivatingListItem;
|