Skip to content

Commit

Permalink
fix copy/paste mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
MutableLoss committed May 11, 2017
1 parent 377f908 commit 5723646
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions menu/menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const OSXtemplate = [
{
label: 'Application',
submenu: [
{ label: 'About 6502Desktop', selector: 'orderFrontStandardAboutPanel:' },
{ label: 'About CodeWars Desktop', selector: 'orderFrontStandardAboutPanel:' },
{ label: 'Quit', accelerator: 'Command+Q', click: function () { app.quit(); } }
]
},
Expand Down Expand Up @@ -37,7 +37,7 @@ const OSXtemplate = [
{
label: 'Help',
submenu: [
{ label: 'Easy 6502 Tutorial', click: function () { require('electron').shell.openExternal('http://electron.atom.io'); } }
{ label: 'About Electron', click: function () { require('electron').shell.openExternal('http://electron.atom.io'); } }
]
},
]
Expand All @@ -63,8 +63,7 @@ const PCtemplate = [
{
label: 'Help',
submenu: [
{ label: 'About 6502Desktop', selector: 'orderFrontStandardAboutPanel:' },
{ label: 'Easy 6502 Tutorial', click: function () { electronOpenLinkInBrowser('http://example.com'); } }
{ label: 'About CodeWars Desktop', selector: 'orderFrontStandardAboutPanel:' }
]
},
]
Expand Down

0 comments on commit 5723646

Please sign in to comment.