Skip to content

Commit 5723646

Browse files
committed
fix copy/paste mistakes
1 parent 377f908 commit 5723646

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

menu/menu.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const OSXtemplate = [
44
{
55
label: 'Application',
66
submenu: [
7-
{ label: 'About 6502Desktop', selector: 'orderFrontStandardAboutPanel:' },
7+
{ label: 'About CodeWars Desktop', selector: 'orderFrontStandardAboutPanel:' },
88
{ label: 'Quit', accelerator: 'Command+Q', click: function () { app.quit(); } }
99
]
1010
},
@@ -37,7 +37,7 @@ const OSXtemplate = [
3737
{
3838
label: 'Help',
3939
submenu: [
40-
{ label: 'Easy 6502 Tutorial', click: function () { require('electron').shell.openExternal('http://electron.atom.io'); } }
40+
{ label: 'About Electron', click: function () { require('electron').shell.openExternal('http://electron.atom.io'); } }
4141
]
4242
},
4343
]
@@ -63,8 +63,7 @@ const PCtemplate = [
6363
{
6464
label: 'Help',
6565
submenu: [
66-
{ label: 'About 6502Desktop', selector: 'orderFrontStandardAboutPanel:' },
67-
{ label: 'Easy 6502 Tutorial', click: function () { electronOpenLinkInBrowser('http://example.com'); } }
66+
{ label: 'About CodeWars Desktop', selector: 'orderFrontStandardAboutPanel:' }
6867
]
6968
},
7069
]

0 commit comments

Comments
 (0)