From fb28514257c7a125c0d00d445180b66b2ae4d39a Mon Sep 17 00:00:00 2001 From: coderaiser Date: Tue, 14 Oct 2014 06:38:47 -0400 Subject: [PATCH] feature(key) add Insert for Mac --- lib/client/key.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/client/key.js b/lib/client/key.js index ba4bb865..9102440e 100644 --- a/lib/client/key.js +++ b/lib/client/key.js @@ -46,6 +46,8 @@ var CloudCmd, Util, DOM; Z : 90, + INSERT_MAC : 96, + ASTERISK : 106, PLUS : 107, MINUS : 109, @@ -193,6 +195,11 @@ var CloudCmd, Util, DOM; .setCurrentFile(next); break; + case Key.INSERT_MAC: + DOM .toggleSelectedFile(current) + .setCurrentFile(next); + break; + case Key.DELETE: if (shift) DOM.sendDelete();