makes the keyboard shortcut documentations appear on '?' on US keyboards, see https://quitter.no/notice/526853
This commit is contained in:
parent
2143afd35f
commit
393cef75b6
|
@ -2533,7 +2533,7 @@ $('body').keyup(function (e) {
|
|||
&& window.loggedIn !== false) {
|
||||
|
||||
// shortcuts documentation on '?'
|
||||
if(e.shiftKey && e.which == 171) {
|
||||
if(e.shiftKey && (e.which == 171 || e.which == 191)) {
|
||||
$('#shortcuts-link').click();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user