Changed key "delete" to "backspace" as per suggestion

This commit is contained in:
Francisco Hodge 2018-07-31 11:58:19 -04:00
parent 5b84982812
commit 12fcae865e
2 changed files with 3 additions and 3 deletions

View File

@ -137,11 +137,11 @@ layoutName: "default"
### 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
display: {
'{bksp}': 'delete',
'{bksp}': 'backspace',
'{enter}': '< enter',
'{shift}': 'shift',
'{s}': 'shift',

View File

@ -53,7 +53,7 @@ class Utilities {
static getDefaultDiplay(){
return {
'{bksp}': 'delete',
'{bksp}': 'backspace',
'{enter}': '< enter',
'{shift}': 'shift',
'{s}': 'shift',