From cefabd4eb8392951bacc92ba6f5ddbb9ef3748ec Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 29 Oct 2014 09:26:06 -0700 Subject: [PATCH] Add FAQ to help menu --- menus/darwin.cson | 1 + src/browser/atom-application.coffee | 1 + 2 files changed, 2 insertions(+) diff --git a/menus/darwin.cson b/menus/darwin.cson index d483108f0..afaeccc45 100644 --- a/menus/darwin.cson +++ b/menus/darwin.cson @@ -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' } ] } diff --git a/src/browser/atom-application.coffee b/src/browser/atom-application.coffee index fb1f0331d..715b435b3 100644 --- a/src/browser/atom-application.coffee +++ b/src/browser/atom-application.coffee @@ -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()