mirror of
https://github.com/anyproto/anytype-ts.git
synced 2025-06-08 05:57:02 +09:00
help menu
This commit is contained in:
parent
eb80eebff3
commit
8f26a60c94
2 changed files with 11 additions and 5 deletions
12
electron.js
12
electron.js
|
@ -122,9 +122,15 @@ function createWindow () {
|
|||
submenu: [
|
||||
{
|
||||
label: 'Table of contents',
|
||||
click: function () {
|
||||
win.webContents.send('help');
|
||||
}
|
||||
click: function () { win.webContents.send('help', 'index'); }
|
||||
},
|
||||
{
|
||||
label: 'Keyboard & Shortcuts',
|
||||
click: function () { win.webContents.send('help', 'shortcuts'); }
|
||||
},
|
||||
{
|
||||
label: 'What\'s new',
|
||||
click: function () { win.webContents.send('help', 'new'); }
|
||||
},
|
||||
]
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue