Merge pull request #6281 from atom/iz-report-issues-through-contributing-guide

Change in-app menu for reporting issues to point to the CONTRIBUTING guide section on submitting issues
This commit is contained in:
Kevin Sawicki
2015-04-07 11:51:19 -07:00
2 changed files with 10 additions and 4 deletions

View File

@@ -169,7 +169,7 @@ 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:report-issue', -> require('shell').openExternal('https://github.com/atom/atom/blob/master/CONTRIBUTING.md#submitting-issues')
@on 'application:search-issues', -> require('shell').openExternal('https://github.com/issues?q=+is%3Aissue+user%3Aatom')
@on 'application:install-update', -> @autoUpdateManager.install()