화살표, Home, End (+Shift) 키보드 입력 기능 추가

This commit is contained in:
2026-05-22 11:55:44 +09:00
parent 4000339477
commit ba0fe2f79f
5 changed files with 132 additions and 3 deletions
+1
View File
@@ -200,6 +200,7 @@ export function createCard(file, idx) {
export function refreshCardSelection() {
Array.from(grid.children).forEach((card, i) => {
card.classList.toggle('selected', state.selectedIdxs.has(i));
card.classList.toggle('keyboard-target', selection.isKeyboardTarget(i));
});
}