From 7193b9c725ed97cd8cc99aba72ceffa40a79c8f8 Mon Sep 17 00:00:00 2001 From: Mrugesh Mohapatra Date: Sun, 31 Jul 2016 04:36:17 +0530 Subject: [PATCH] Update wiki HotKey --- client/sagas/mouse-trap-saga.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/client/sagas/mouse-trap-saga.js b/client/sagas/mouse-trap-saga.js index a9b3146ce7..a9a7fb8297 100644 --- a/client/sagas/mouse-trap-saga.js +++ b/client/sagas/mouse-trap-saga.js @@ -20,7 +20,6 @@ const softRedirects = { 'g n n': '/challenges/next-challenge', 'g n a': '/about', 'g n m': '/map', - 'g n w': '/wiki', 'g n s': '/shop', 'g n o': '/settings' }; @@ -33,6 +32,10 @@ export default function mouseTrapSaga(actions$) { 'g n r', () => hardGoTo('https://github.com/freecodecamp/freecodecamp') ), + bindKey$( + 'g n w', + () => hardGoTo('http://forum.freecodecamp.com') + ), bindKey$('g m', toggleMapDrawer), bindKey$('g t n', toggleNightMode), bindKey$('g c', toggleMainChat)