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:
Marcus Jaschen 2023-06-11 09:21:13 +02:00
parent bdb7d1f650
commit 4c276428a6
3 changed files with 235 additions and 0 deletions

View file

@ -160,6 +160,8 @@
} else if (e.keyCode === 72) {
// char code for 'h'
$('#about').modal('show');
} else if (e.key === '?') {
$('#help').modal('show');
}
}
},