tweak bottom row on hover but needs love

This commit is contained in:
lvuch 2016-02-26 11:32:59 -07:00
parent 53903ce195
commit 25a7c33e11
1 changed files with 2 additions and 2 deletions

View File

@ -79,14 +79,14 @@ export default Ember.Component.extend({
if (this.get('forcedMenu')) {
navPartial = this.get('forcedMenu');
Ember.$('.bottom-row').toggleClass('subactive');
Ember.$('.bottom-row').addClass('subactive');
}
if (isInCurrentPath) {
this.set('subnavPartial', `tabs/${navPartial}`);
Ember.$('.bottom-row').toggleClass('subhover');
} else {
this.set('subnavPartial', null);
Ember.$('.bottom-row').toggleClass('subhover');
}
}).on('init'),