mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-02 12:00:10 +08:00
ctrl tab should work on all browsers
This commit is contained in:
parent
c3fe948282
commit
f473c8f411
1 changed files with 5 additions and 1 deletions
|
@ -3636,7 +3636,11 @@ $(document).keydown((event) => {
|
|||
|
||||
//tab
|
||||
if (event["keyCode"] == 9) {
|
||||
if (config.quickTab && !$(".pageLogin").hasClass("active")) {
|
||||
if (
|
||||
!event.ctrlKey &&
|
||||
config.quickTab &&
|
||||
!$(".pageLogin").hasClass("active")
|
||||
) {
|
||||
event.preventDefault();
|
||||
if ($(".pageTest").hasClass("active")) {
|
||||
if (
|
||||
|
|
Loading…
Reference in a new issue