mirror of
https://github.com/hodgef/simple-keyboard.git
synced 2025-02-12 18:56:16 +08:00
Changed key "delete" to "backspace" as per suggestion
This commit is contained in:
parent
5b84982812
commit
12fcae865e
@ -137,11 +137,11 @@ layoutName: "default"
|
|||||||
|
|
||||||
### display
|
### display
|
||||||
|
|
||||||
> Replaces variable buttons (such as `{bksp}`) with a human-friendly name (e.g.: "delete").
|
> Replaces variable buttons (such as `{bksp}`) with a human-friendly name (e.g.: "backspace").
|
||||||
|
|
||||||
```js
|
```js
|
||||||
display: {
|
display: {
|
||||||
'{bksp}': 'delete',
|
'{bksp}': 'backspace',
|
||||||
'{enter}': '< enter',
|
'{enter}': '< enter',
|
||||||
'{shift}': 'shift',
|
'{shift}': 'shift',
|
||||||
'{s}': 'shift',
|
'{s}': 'shift',
|
||||||
|
@ -53,7 +53,7 @@ class Utilities {
|
|||||||
|
|
||||||
static getDefaultDiplay(){
|
static getDefaultDiplay(){
|
||||||
return {
|
return {
|
||||||
'{bksp}': 'delete',
|
'{bksp}': 'backspace',
|
||||||
'{enter}': '< enter',
|
'{enter}': '< enter',
|
||||||
'{shift}': 'shift',
|
'{shift}': 'shift',
|
||||||
'{s}': 'shift',
|
'{s}': 'shift',
|
||||||
|
Loading…
Reference in New Issue
Block a user