From b621c72f2afebae0279137a7230881789125cfba Mon Sep 17 00:00:00 2001 From: Fayne Aldan Date: Tue, 19 Jul 2016 06:45:29 -0600 Subject: [PATCH] Fix two errors with the fullscreen FAQ in the docs --- docs/For Users/FAQ.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/For Users/FAQ.md b/docs/For Users/FAQ.md index 42cbc2448e..fad56bbebf 100644 --- a/docs/For Users/FAQ.md +++ b/docs/For Users/FAQ.md @@ -38,12 +38,12 @@ To enable ESC key for leaving fullscreen mode, you can use [Shortcut API](../Ref ```javascript nw.App.registerGlobalHotKey(new nw.Shortcut({ - key: "Esc", + key: "Escape", active: function () { // decide whether to leave fullscreen mode // then ... nw.Window.get().leaveFullscreen(); - }) + } })); ```