Skip to content
This repository was archived by the owner on Nov 7, 2022. It is now read-only.

Commit 9f560b3

Browse files
committed
excluded input[type=file] from Focus Input command, bump v1.25.2
1 parent 1c7668f commit 9f560b3

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

book/release_notes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release Notes
22

3+
# 1.25.2
4+
5+
* Revised Focus Input command to exclude file inputs.
6+
37
# 1.25.1
48

59
* Made hint auto-activation user-configurable

manifest/common.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Saka Key",
3-
"version": "1.25.1",
3+
"version": "1.25.2",
44
"author": "Sufyan Dawoodjee",
55
"description": "A keyboard interface to the web",
66
"manifest_version": 2,

src/modes/command/client/commands/hint.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ export const focusLink = background('findHints', {
3030
})
3131
export const focusInput = background('findHints', {
3232
filter:
33-
'input:not([type=submit]):not([type=button]):not([type=reset]), textarea, select',
33+
'input:not([type=submit]):not([type=button]):not([type=reset]):not([type=file]), textarea, select',
3434
activate: 'openLink'
3535
})

0 commit comments

Comments
 (0)