Skip to content

Commit

Permalink
Merge pull request TryGhost#4623 from vikhyat/unfocus-nav
Browse files Browse the repository at this point in the history
Fix active menu state on settings navigation
  • Loading branch information
JohnONolan committed Dec 11, 2014
2 parents 1626a8f + 297c33b commit d81cc1f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion core/client/components/gh-activating-list-item.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
var ActivatingListItem = Ember.Component.extend({
tagName: 'li',
classNameBindings: ['active'],
active: false
active: false,

unfocusLink: function () {
this.$('a').blur();
}.on('click')
});

export default ActivatingListItem;

0 comments on commit d81cc1f

Please sign in to comment.