From 2a215481ba76a92bf53f138dd76013f1a85a3583 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Wed, 11 May 2016 19:45:06 +0300 Subject: [PATCH] =?UTF-8?q?fix(key)=20Alt=20+=20G:=20replace=20path=20with?= =?UTF-8?q?=20"=C2=A9"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/client/key.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/client/key.js b/lib/client/key.js index 95569fcb..89853b5a 100644 --- a/lib/client/key.js +++ b/lib/client/key.js @@ -479,8 +479,10 @@ var CloudCmd, Util, DOM; break; case Key.G: - if (alt) + if (alt) { DOM.goToDirectory(); + event.preventDefault(); + } break;