Add FAQ to help menu

This commit is contained in:
Kevin Sawicki
2014-10-29 09:26:06 -07:00
parent 9f80be4570
commit cefabd4eb8
2 changed files with 2 additions and 0 deletions

View File

@@ -192,6 +192,7 @@
{ label: 'Documentation', command: 'application:open-documentation' }
{ label: 'Community Discussions', command: 'application:open-discussions' }
{ label: 'Roadmap', command: 'application:open-roadmap' }
{ label: 'Frequently Asked Questions', command: 'application:open-faq' }
{ type: 'separator' }
]
}

View File

@@ -157,6 +157,7 @@ class AtomApplication
@on 'application:open-documentation', -> require('shell').openExternal('https://atom.io/docs/latest/?app')
@on 'application:open-discussions', -> require('shell').openExternal('https://discuss.atom.io')
@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:install-update', -> @autoUpdateManager.install()
@on 'application:check-for-update', => @autoUpdateManager.check()