hide when too narrow

这个提交包含在:
binary-husky
2024-07-21 15:04:38 +00:00
父节点 f0cd617ec2
当前提交 1edaa9e234

查看文件

@@ -150,8 +150,9 @@ class WelcomeMessage {
}
async update() {
// console.log('update')
if (!await this.isChatbotEmpty()) {
console.log('update')
var page_width = document.documentElement.clientWidth;
if (!await this.isChatbotEmpty() || page_width < 1100) {
if (this.visible) {
this.removeWelcome();
this.visible = false;