mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-03-11 06:05:16 +08:00
fixed not being able to insert tab character with quick tab mode enabled. closes #1284
This commit is contained in:
parent
69c35c5ea1
commit
f00d747e87
1 changed files with 4 additions and 1 deletions
|
@ -58,7 +58,10 @@ function handleTab(event) {
|
|||
) {
|
||||
if ($(".pageTest").hasClass("active")) {
|
||||
if (Config.quickTab) {
|
||||
if (Config.mode == "zen" && !event.shiftKey) {
|
||||
if (
|
||||
(Config.mode == "zen" && !event.shiftKey) ||
|
||||
(TestLogic.hasTab && !event.shiftKey)
|
||||
) {
|
||||
//ignore
|
||||
} else {
|
||||
if (event.shiftKey) ManualRestart.set();
|
||||
|
|
Loading…
Reference in a new issue