Skip to content

Commit

Permalink
Fix active menu state on settings navigation
Browse files Browse the repository at this point in the history
closes #4622
- unfocus ActivatingListItem link when clicked
  • Loading branch information
vikhyat committed Dec 10, 2014
1 parent 823b5b4 commit 297c33b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion core/client/components/gh-activating-list-item.js
@@ -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 297c33b

Please sign in to comment.