aboutsummaryrefslogtreecommitdiff
path: root/webAO
diff options
context:
space:
mode:
authorAwesomeAim <30537683+AwesomeAim@users.noreply.github.com>2022-05-10 04:58:15 -0700
committerGitHub <noreply@github.com>2022-05-10 04:58:15 -0700
commitc01f37ef8e5f5472af9022445eee611706836963 (patch)
treeb460c847d4808d5987a36bef8b9ce9e2535c2cbb /webAO
parentae18b3bfcc33f720941c39427dfdbe7858bab133 (diff)
Reveal the textbox after the preanimation
There may be a better fix since I really am unfamiliar with this language and codebase, but this fixed it well enough.
Diffstat (limited to 'webAO')
-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)
}
}