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 ### 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',

View File

@ -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',