Add report issue to Help menu

This commit is contained in:
Kevin Sawicki 2014-10-29 09:28:49 -07:00
parent cefabd4eb8
commit 05c1ae71e1
2 changed files with 3 additions and 0 deletions

View File

@ -193,6 +193,7 @@
{ label: 'Community Discussions', command: 'application:open-discussions' }
{ label: 'Roadmap', command: 'application:open-roadmap' }
{ label: 'Frequently Asked Questions', command: 'application:open-faq' }
{ label: 'Report Issue', command: 'application:report-issue' }
{ type: 'separator' }
]
}

View File

@ -159,6 +159,8 @@ class AtomApplication
@on 'application:open-roadmap', -> require('shell').openExternal('https://atom.io/roadmap?app')
@on 'application:open-faq', -> require('shell').openExternal('https://atom.io/faq')
@on 'application:open-terms-of-use', -> require('shell').openExternal('https://atom.io/terms')
@on 'application:report-issue', -> require('shell').openExternal('https://github.com/atom/atom/issues/new')
@on 'application:install-update', -> @autoUpdateManager.install()
@on 'application:check-for-update', => @autoUpdateManager.check()