mirror of
https://github.com/urbit/shrub.git
synced 2024-12-01 06:35:32 +03:00
soto: catch full ansi layout keys
Adds "Insert", "Delete", "PageUp" and other function keys to the ignored keys array of soto.
This commit is contained in:
parent
c07aeb54bf
commit
198a3afdd3
File diff suppressed because one or more lines are too long
@ -18,7 +18,8 @@ export class Input extends Component {
|
||||
|
||||
let ignoredKeys = ["Meta", "Alt", "Control", "Escape", "Shift",
|
||||
"F1", "F2", "F3", "F4", "F5", "F6", "F7", "F8",
|
||||
"F9", "F10", "F11", "F12", "Backspace"
|
||||
"F9", "F10", "F11", "F12", "Backspace",
|
||||
"Delete", "Insert", "Home", "PageUp", "PageDown", "End"
|
||||
];
|
||||
|
||||
// submit on enter
|
||||
|
Loading…
Reference in New Issue
Block a user