Norio Suzuki 10 лет назад
Родитель
Сommit
36bdd6a133
1 измененных файлов с 2 добавлено и 1 удалено
  1. 2 1
      resource/js/crowi-form.js

+ 2 - 1
resource/js/crowi-form.js

@@ -170,7 +170,8 @@ $(function() {
   };
 
   var handleSpaceKey = function(event) {
-    if (event.shiftKey && event.altKey) {
+    // keybind: alt + shift + space
+    if (!(event.shiftKey && event.altKey)) {
       return;
     }
     var currentLine = getCurrentLine(event);