Move restart button into global menu

// FREEBIE
This commit is contained in:
lilia 2016-03-18 16:21:55 -07:00
parent c16356084d
commit 647c2761e0
5 changed files with 13 additions and 17 deletions

View file

@ -32,12 +32,6 @@
this.$el.attr('class', className);
this.$el.text(message);
}
},
events: {
'click': 'reloadBackgroundPage'
},
reloadBackgroundPage: function() {
chrome.runtime.reload();
}
});
@ -107,6 +101,7 @@
searchForPeopleOrGroups: i18n('searchForPeopleOrGroups'),
submitDebugLog: i18n('submitDebugLog'),
settings: i18n('settings'),
restartSignal: i18n('restartSignal')
},
events: {
'click': 'closeMenu',
@ -114,7 +109,11 @@
'click .show-debug-log': 'showDebugLog',
'click .settings': 'showSettings',
'select .gutter .conversation-list-item': 'openConversation',
'input input.search': 'filterContacts'
'input input.search': 'filterContacts',
'click .restart-signal': 'reloadBackgroundPage'
},
reloadBackgroundPage: function() {
chrome.runtime.reload();
},
showSettings: function() {
var view = new Whisper.SettingsView().render();