mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-07-13 16:43:53 +01:00
Add openInbox link to conversation menu. Fixes #246
This commit is contained in:
+2
-1
@@ -21,6 +21,7 @@
|
||||
<div class='menu'>
|
||||
<button class='hamburger'></button>
|
||||
<ul class='menu-list'>
|
||||
<li><a class='openInbox'>Open Inbox</a></li>
|
||||
{{#group}}
|
||||
<li><a class='new-group-update'>Update group</a></li>
|
||||
<li><a class='leave-group'>Leave group</a></li>
|
||||
@@ -32,7 +33,7 @@
|
||||
<li><a class='destroy'>Delete messages</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<span class='conversation-title'>{{ title }}</span>
|
||||
<span class='conversation-title'>{{ title }}</span>
|
||||
</div>
|
||||
|
||||
<div class='discussion-container'></div>
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user