From d26c13b155d4b505355dbe4e4244d5571db8f835 Mon Sep 17 00:00:00 2001 From: lilia Date: Tue, 2 Jun 2015 14:56:58 -0700 Subject: [PATCH] Add openInbox link to conversation menu. Fixes #246 --- background.html | 3 ++- js/views/conversation_view.js | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/background.html b/background.html index 0f52e23f..67e48cc6 100644 --- a/background.html +++ b/background.html @@ -21,6 +21,7 @@ - {{ title }} + {{ title }}
diff --git a/js/views/conversation_view.js b/js/views/conversation_view.js index 5e53d73d..9d7a3d18 100644 --- a/js/views/conversation_view.js +++ b/js/views/conversation_view.js @@ -65,10 +65,15 @@ 'click .new-group-update': 'newGroupUpdate', 'click .verify-identity': 'verifyIdentity', 'click .hamburger': 'toggleMenu', + 'click .openInbox' : 'openInbox', 'click' : 'onClick', 'select .entry': 'messageDetail' }, + openInbox: function() { + openInbox(); + }, + onClick: function(e) { this.closeMenu(e); this.markRead(e);