diff options
| author | stonedDiscord <Tukz@gmx.de> | 2022-05-10 14:07:21 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-10 14:07:21 +0200 |
| commit | f63915ff0799f6c784e3a1b61ae1c0fdcafa9b6f (patch) | |
| tree | b460c847d4808d5987a36bef8b9ce9e2535c2cbb | |
| parent | ae18b3bfcc33f720941c39427dfdbe7858bab133 (diff) | |
| parent | c01f37ef8e5f5472af9022445eee611706836963 (diff) | |
Merge pull request #142 from AwesomeAim/master
Reveal the textbox after the preanimation
| -rw-r--r-- | webAO/client.ts | 2 |
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) } } |
