From d27dfaa621918ef865978941d5fb0839af6cb83e Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Wed, 19 Nov 2014 09:32:25 +0800 Subject: [PATCH] . --- static/js/hotkeys.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/static/js/hotkeys.js b/static/js/hotkeys.js index cad007a..a27096e 100644 --- a/static/js/hotkeys.js +++ b/static/js/hotkeys.js @@ -31,7 +31,7 @@ var hotkeys = { which: 49 }, // Ctrl+4 焦点切换到输出窗口 - goOutPut: { + goOutput: { ctrlKey: true, altKey: false, shiftKey: false, @@ -318,8 +318,8 @@ var hotkeys = { return; } - if (event.ctrlKey === hotKeys.goOutPut.ctrlKey - && event.which === hotKeys.goOutPut.which) { // Ctrl+4 焦点切换到输出窗口 + if (event.ctrlKey === hotKeys.goOutput.ctrlKey + && event.which === hotKeys.goOutput.which) { // Ctrl+4 焦点切换到输出窗口 bottomGroup.tabs.setCurrent("output"); windows.flowBottom();