aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstonedDiscord <Tukz@gmx.de>2022-05-10 14:07:21 +0200
committerGitHub <noreply@github.com>2022-05-10 14:07:21 +0200
commitf63915ff0799f6c784e3a1b61ae1c0fdcafa9b6f (patch)
treeb460c847d4808d5987a36bef8b9ce9e2535c2cbb
parentae18b3bfcc33f720941c39427dfdbe7858bab133 (diff)
parentc01f37ef8e5f5472af9022445eee611706836963 (diff)
Merge pull request #142 from AwesomeAim/master
Reveal the textbox after the preanimation
-rw-r--r--webAO/client.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/webAO/client.ts b/webAO/client.ts
index bcb3e35..bd2407f 100644
--- a/webAO/client.ts
+++ b/webAO/client.ts
@@ -2517,6 +2517,8 @@ class Viewport {
return
}
} else if (this.textnow !== this.chatmsg.content) {
+ const chatContainerBox = document.getElementById('client_chatcontainer');
+ chatContainerBox.style.opacity = '1';
await this.handleTextTick(charLayers)
}
}