Add "Help" dialog which shows available keyboard shortcuts
Dialog can be toggled via button in "About" or via keyboard shortcut "?"
This commit is contained in:
parent
bdb7d1f650
commit
4c276428a6
3 changed files with 235 additions and 0 deletions
|
|
@ -160,6 +160,8 @@
|
|||
} else if (e.keyCode === 72) {
|
||||
// char code for 'h'
|
||||
$('#about').modal('show');
|
||||
} else if (e.key === '?') {
|
||||
$('#help').modal('show');
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue