소스 검색

Make Enter key work when pressing Enter

Daoud Clarke 3 년 전
부모
커밋
202ef35d7a
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      static/index.js

+ 2 - 0
static/index.js

@@ -38,6 +38,8 @@ window.onload = (event) => {
             selectNextItem();
         } else if (e.key == 'ArrowUp') {
             selectPreviousItem();
+        } else if (e.key == 'Enter') {
+            clickSelected();
         }
     });