diff --git a/js/views/conversation_view.js b/js/views/conversation_view.js index 97660f2b..3a61b147 100644 --- a/js/views/conversation_view.js +++ b/js/views/conversation_view.js @@ -276,13 +276,13 @@ listenBack: function(view) { this.panel = view; - this.$('.main.panel, .menu').hide(); + this.$('.main.panel, .header-buttons.right').hide(); this.$('.back').show(); view.$el.insertBefore(this.$('.panel')); }, resetPanel: function() { this.panel.remove(); - this.$('.main.panel, .menu').show(); + this.$('.main.panel, .header-buttons.right').show(); this.$('.back').hide(); this.$el.trigger('force-resize'); },