Differentiate active vs selected conversation states

// FREEBIE
This commit is contained in:
lilia 2016-04-01 11:04:20 -07:00
parent c3a7766dd4
commit 1aa975e199
3 changed files with 11 additions and 7 deletions

View file

@ -119,12 +119,12 @@
return;
}
this.$('#header').addClass('inactive');
this.$('#header, .gutter').addClass('inactive');
this.$('.conversation-stack').removeClass('inactive');
},
focusHeader: function() {
this.$('.conversation-stack').addClass('inactive');
this.$('#header').removeClass('inactive');
this.$('#header, .gutter').removeClass('inactive');
this.$('.conversation:first .menu').trigger('close');
},
reloadBackgroundPage: function() {